xref: /freebsd/contrib/dialog/samples/menubox6 (revision 0e8011faf58b743cc652e3b2ad0f7671227610df)
1#!/bin/sh
2# $Id: menubox6,v 1.10 2020/11/26 00:03:58 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        "PC-DOS" "IBM PC \ZrDOS"                       "clone of a clone" \
24        "MS-DOS" "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
26returncode=$?
27
28. ./report-tempfile
29