changed homefromsubdir a little

This commit is contained in:
eck 1990-10-16 10:07:12 +00:00
parent 7be2815cbc
commit c33f7cbe76

View file

@ -1,11 +1,11 @@
if [ $# = 1 ]
then
NAM=`expr $1 : '^\(\..*\)'`
if [ X$NAM = X ]
NAM=`expr $1 : '^\(\/.*\)'`
if [ X$NAM != X ]
then
NAM=$1
else
NAM=../$NAM
NAM=../$1
fi
echo $NAM
exit 0