xref: /freebsd/contrib/dialog/samples/checklist10 (revision e64fe029e9d3ce476e77a478318e0c3cd201ff08)
1#! /bin/sh
2# $Id: checklist10,v 1.10 2020/11/26 00:03:58 tom Exp $
3# zero-width column
4
5. ./setup-vars
6
7. ./setup-tempfile
8
9$DIALOG \
10	--backtitle "No such organization" \
11	--title "CHECKLIST BOX" "$@" \
12        --checklist "Hi, this is a checklist box. You can use this to \n\
13present a list of choices which can be turned on or \n\
14off. If there are more items than can fit on the \n\
15screen, the list will be scrolled. You can use the \n\
16UP/DOWN arrow keys, the first letter of the choice as a \n\
17hot key, or the number keys 1-9 to choose an option. \n\
18Press SPACE to toggle an option on/off. \n\n\
19  Which of the following are fruits?" 20 61 5 \
20	Dialog		"" on \
21	Readline	"" off \
22	Gnome		"" off \
23	Kde		"" off \
24	Editor		"" off \
25	Noninteractive	"" on \
26        2> $tempfile
27
28returncode=$?
29
30. ./report-tempfile
31