xref: /freebsd/contrib/dialog/samples/menubox8 (revision 35c0a8c449fd2b7f75029ebed5e10852240f0865)
1#!/bin/sh
2# $Id: menubox8,v 1.10 2020/11/26 00:09:12 tom Exp $
3
4. ./setup-vars
5
6exec 3>&1
7returntext=`$DIALOG --help-button \
8	--default-item "MS-DOS" \
9	--clear \
10	--title "MENU BOX" "$@" \
11        --menu "Hi, this is a menu box. You can use this to \n\
12present a list of choices for the user to \n\
13choose. If there are more items than can fit \n\
14on the screen, the menu will be scrolled. \n\
15You can use the UP/DOWN arrow keys, the first \n\
16letter of the choice as a hot key, or the \n\
17number keys 1-9 to choose an option.\n\
18Try it now!\n\n\
19          Choose the OS you like:" 20 51 4 \
20        "Linux"  "The Great Unix Clone for 386/486" \
21        "NetBSD" "Another free Unix Clone for 386/486" \
22        "OS/2" "IBM OS/2" \
23        "WIN NT" "Microsoft Windows NT" \
24        "PC-DOS" "IBM PC DOS" \
25        "MS-DOS" "Microsoft DOS" \
262>&1 1>&3`
27returncode=$?
28exec 3>&-
29
30. ./report-string
31