perhaps the issue was with variable names
try the following:
#!/bin/sh
astring="z"
while [ $astring != "quit" ]
do
read astring
if [ $astring = "z" ]
then
bstring="hello my name is Gsmith and I have 5 dollars"
echo $bstring
else
echo "Never again"
fi
done
|