Bash - Menu Selection

#!/bin/bash PS3='Please enter your choice: ' options=("Option 1" "Option 2" "Option 3" "Quit") select opt in "${options[@]}" do case $opt in "Option 1") echo "you chose choice 1" break ;; "Option 2") echo "you chose choice 2" break ;; "Option 3") echo "you chose choice 3" break ;; "Quit") break ;; *) echo invalid option;; esac done

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.