Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
while echo " Select option
a) Option A
b) Option B
c) Add information
d) Exit this menu
"; do
read keypress
case $keypress in
a) echo "You have selected Option A "
;;
b) echo "You have selected Option B "
;;
c) echo "Name the file that you want to add information:\c"
read answer
echo
cat >>$answer
;;
d) break
;;
*) echo " WRONG SELECTION. TRY AGAIN"
continue
;;
esac
done
echo "Done"