Skip to content

Instantly share code, notes, and snippets.

@tobbe11
Last active October 6, 2020 04:54
Show Gist options
  • Select an option

  • Save tobbe11/7a144cc76f37dfd59137ce61ca6bf403 to your computer and use it in GitHub Desktop.

Select an option

Save tobbe11/7a144cc76f37dfd59137ce61ca6bf403 to your computer and use it in GitHub Desktop.
#!/bin/bash
declare -a menu ; declare -a cmds
menu+=(0 "Exit") ; cmds+=("exit 0")
menu+=(1 "uname") ; cmds+=("uname -a")
menu+=(2 "pwd") ; cmds+=("pwd")
ret=$(whiptail --title "My title" --menu "Make your choice:" 25 28 10 "${menu[@]}" 3>&1 1>&2 2>&3)
return ${cmds[${ret}]}
# rr() { $(${1:-./run.sh}); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment