]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/dialog/samples/menubox7
Upgrade our copy of llvm/clang to trunk r162107. With thanks to
[FreeBSD/FreeBSD.git] / contrib / dialog / samples / menubox7
1 #!/bin/sh
2 # $Id: menubox7,v 1.9 2010/01/13 10:20:03 tom Exp $
3 # example with --extra-button
4
5 . ./setup-vars
6
7 . ./setup-tempfile
8
9 $DIALOG --clear --item-help --extra-button --extra-label "Choice" \
10         --title "MENU BOX" "$@" \
11         --menu "Hi, this is a menu box. You can use this to \n\
12 present a list of choices for the user to \n\
13 choose. If there are more items than can fit \n\
14 on the screen, the menu will be scrolled. \n\
15 You can use the UP/DOWN arrow keys, the first \n\
16 letter of the choice as a hot key, or the \n\
17 number keys 1-9 to choose an option.\n\
18 Try it now!\n\n\
19           Choose the OS you like:" 20 51 4 \
20         "Linux"  "The Great Unix Clone for 386/486"    "Why use Linux?" \
21         "NetBSD" "Another free Unix Clone for 386/486" "Or NetBSD?" \
22         "OS/2"   "IBM OS/2"                            "aka \"Warp\"" \
23         "WIN NT" "Microsoft Windows NT"                "hmm" \
24         "PCDOS"  "IBM PC DOS"                          "clone of a clone" \
25         "MSDOS"  "Microsoft DOS"                       "DOS: Disk Operating System, originally for an IBM contract, hence using the same jargon" 2> $tempfile
26
27 retval=$?
28
29 . ./report-tempfile