create-multiple-choice-bash.sh

PHOTO EMBED

Mon Oct 18 2021 07:57:50 GMT+0000 (Coordinated Universal Time)

Saved by @gitround #bash #sh #script #shell #shellscript

#!/bin/bash
# Bash Menu Script Example

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"
            ;;
        "Option 2")
            echo "you chose choice 2"
            ;;
        "Option 3")
            echo "you chose choice $REPLY which is $opt"
            ;;
        "Quit")
            break
            ;;
        *) echo "invalid option $REPLY";;
    esac
done
content_copyCOPY

https://askubuntu.com/questions/1705/how-can-i-create-a-select-menu-in-a-shell-script