Bash: Menu Seed Script
Simple seed script for creating a menu system on linux( from stackoverflow )
#!/bin/bash # Menu Runner PS3='Please enter choice: ' opts=("ls" "pwd" "opt3" "Quit") select opt in "${opts[@]}" do case $opt in "ls") echo "u chose ls" ;; "pwd") echo "u chose pwd" ;; "opt3") echo "u typed '$REPLY' which calls '$opt'" ;; "Quit") break ;; *) echo "invalid option $REPLY";; esac done