mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-24 22:37:59 +02:00
14 lines
246 B
Bash
Executable File
14 lines
246 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# srcdir - print out the absolute pathname of the top of the bash source
|
|
# tree. Used for getting the right value to makes in subdirectories
|
|
#
|
|
|
|
case "$1" in
|
|
'.'|./) pwd ;;
|
|
./*|..*) echo `pwd`/"$1" ;;
|
|
*) echo "$1" ;;
|
|
esac
|
|
|
|
exit 0
|