Files
bash/CWRU/old-conf/support/srcdir
T
2011-12-03 12:52:47 -05: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