summaryrefslogtreecommitdiff
path: root/ult/ult_9/while-2.sh
blob: 5fbdd11ceaa90cace5ae9d543850ce7ed9fb7868 (plain)
1
2
3
4
5
6
7
while [ "$variable" != "quit" ]
do
  read variable
  echo "Input - $variable"
done
exit 0