Displaying 1 result from an estimated 1 matches for "not_defined".
2002 Aug 09
0
Automation of public/private key generation
...-> enter your passphrase !"
echo ""
echo "It may take a while to generate the keys. Please wait..."
}
# -
## ++
get_target_hostname()
{
# globals in: MYUSERNAME
# out: TARGEThostname
if [ ${TARGEThostname:-Notset} = Notset ]; then
ANSWER="not_defined"
BADANSWER=${ANSWER}
else
ANSWER=${TARGEThostname}
fi
need_input="y"
while [ ${need_input} = "y" ]; do
echo ""
echo "Enter remote host name you want to logon:"
echo ""
echo "** Host name [${ANSWER}] : \c"
read A...