This is one of my first shell-scripts i wrote myself back in 1999/
echo Enter zouz to list his information
echo Otherwise you wont see anything and you will exit this program!
echo -n "Please enter option: "
read choice
if [ "$choice" = zouz ]
then
finger zouz
else
exit -1
fi
echo bye mate
echo Enter zouz to list his information
echo Otherwise you wont see anything and you will exit this program!
echo -n "Please enter option: "
read choice
if [ "$choice" = zouz ]
then
finger zouz
else
exit -1
fi
echo bye mate
Comments