Files
bash/support/srcdir
T
2009-09-12 16:46:49 +00:00

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