readme and license
[whiptailexamples/.git] / menubox.sh
1 #!/bin/bash
2 OPTION=$(whiptail --title "Test Menu Dialog" --menu "Choose your option" 15 60 4 \
3 "1" "Grilled Spicy Sausage" \
4 "2" "Grilled Halloumi Cheese" \
5 "3" "Charcoaled Chicken Wings" \
6 "4" "Fried Aubergine"  3>&1 1>&2 2>&3)
7  
8 exitstatus=$?
9 if [ $exitstatus = 0 ]; then
10     echo "Your chosen option:" $OPTION
11 else
12     echo "You chose Cancel."
13 fi