Skip to content

Instantly share code, notes, and snippets.

@ask-compu
Last active June 18, 2017 16:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ask-compu/720c17f571ffe32bfd30cc5e4a7ba811 to your computer and use it in GitHub Desktop.
Save ask-compu/720c17f571ffe32bfd30cc5e4a7ba811 to your computer and use it in GitHub Desktop.
Putty Replacement Script
PS3=$'Welcome to the PuTTY replacement script.\nPick an Option: '
options=("80s Apple II BBS" "Server" "Raspberry Pi" "Quit")
select opt in "${options[@]}"
do
case $opt in
"80s Apple II BBS")
./apple.sh
break
;;
"Server")
./server.sh
break
;;
"Raspberry Pi")
./pi.sh
break
;;
"Quit")
echo "Quitting"
break
;;
*) echo invalid option;;
esac
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment