xref: /freebsd/contrib/dialog/samples/menubox6 (revision 8d20be1e22095c27faf8fe8b2f0d089739cc742e)
1#!/bin/sh
2# $Id: menubox6,v 1.8 2010/01/13 10:20:03 tom Exp $
3# example showing the --colors option
4
5. ./setup-vars
6
7. ./setup-tempfile
8
9$DIALOG --clear --item-help --title "MENU BOX" --colors "$@" \
10        --menu "Hi, this is a \Zumenu\Zn box. You can use this to \n\
11present a list of choices for the user to \n\
12choose. If there are more items than can fit \n\
13on the screen, the menu will be scrolled. \n\
14You can use the \Z4UP/DOWN\Zn arrow keys, the first \n\
15letter of the choice as a hot key, or the \n\
16\Z2number\Zn keys 1-9 to choose an option.\n\
17Try it now!\n\n\
18          Choose the OS you like:" 20 51 4 \
19        "Linux"  "The Great Unix Clone for \Zu386/486"    "Why use \ZbLinux?" \
20        "NetBSD" "Another free Unix Clone for \Zu386/486" "Or \ZbNetBSD?" \
21        "OS/2"   "IBM OS/2"                            "aka \"Warp\"" \
22        "WIN NT" "Microsoft Windows NT"                "hmm" \
23        "PCDOS"  "IBM PC \ZrDOS"                          "clone of a clone" \
24        "MSDOS"  "Microsoft \ZrDOS"                       "\ZbDOS\Zn: \Zb\Z3D\Znisk \Zb\Z3O\Znperating \Zb\Z3S\Znystem, originally for an IBM contract, hence using the same jargon" 2> $tempfile
25
26retval=$?
27
28. ./report-tempfile
29