unixwhoopie
Programmer
I am not sure how $1 works. If I have something like this in a shell script, what is $1?
if [ -z "$1" ]
then
echo "Not found"
else
DATFILE=${DAT_DIR}/$1
fi
thanks
if [ -z "$1" ]
then
echo "Not found"
else
DATFILE=${DAT_DIR}/$1
fi
thanks