16 lines
163 B
Plaintext
Executable file
16 lines
163 B
Plaintext
Executable file
if [ $# = 1 ]
|
|
then
|
|
NAM=`expr $1 : '^\(\..*\)'`
|
|
if [ X$NAM = X ]
|
|
then
|
|
NAM=$1
|
|
else
|
|
NAM=../$NAM
|
|
fi
|
|
echo $NAM
|
|
exit 0
|
|
else
|
|
echo PATH_ERROR
|
|
exit 1
|
|
fi
|