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 true
do
tput clear
echo "MENU
...
S for Shell
...
Choice? \c"
typeset -u choice
read choice
case $choice in
...
S*)
echo "Use exit+ENTER or ctrl-D to return to menu"
ksh
;;
esac
done