xref: /freebsd/contrib/dialog/samples/menubox-8bit (revision 79ac3c12a714bcd3f2354c52d948aed9575c46d6)
1#!/bin/sh
2# $Id: menubox-8bit,v 1.8 2020/11/26 00:03:58 tom Exp $
3
4. ./setup-vars
5
6. ./setup-tempfile
7
8. ./testdata-8bit
9
10$DIALOG --clear --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        "`./rotated-data 0 "$SAMPLE"`"  "The Great Unix Clone for 386/486" \
21        "`./rotated-data 1 "$SAMPLE"`" "Another free Unix Clone for 386/486" \
22        "`./rotated-data 2 "$SAMPLE"`" "IBM OS/2" \
23        "`./rotated-data 3 "$SAMPLE"`" "Microsoft Windows NT" \
24        "`./rotated-data 4 "$SAMPLE"`" "IBM PC DOS" \
25        "`./rotated-data 5 "$SAMPLE"`" "Microsoft DOS" 2> $tempfile
26
27returncode=$?
28
29. ./report-tempfile
30