All,
echo ${DEBUG_PORT}
if [ "${DEBUG_PORT}" == "" ] ; then
DEBUG_PORT="8453"
export DEBUG_PORT
echo " FINALLY I AM HERE "
echo ${DEBUG_PORT}
fi
The above Script is in a file named test.sh I am trying to run it. It dosn't print 8453 at first.
I am running the script as ./test.sh
OS is Redhat Linux Ver 4.
Any ideas?
Thanks in advance.
Swaroop Kunduru.
echo ${DEBUG_PORT}
if [ "${DEBUG_PORT}" == "" ] ; then
DEBUG_PORT="8453"
export DEBUG_PORT
echo " FINALLY I AM HERE "
echo ${DEBUG_PORT}
fi
The above Script is in a file named test.sh I am trying to run it. It dosn't print 8453 at first.
I am running the script as ./test.sh
OS is Redhat Linux Ver 4.
Any ideas?
Thanks in advance.
Swaroop Kunduru.