]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/dialog/samples/checklist-utf8
Merge CK as of commit 255a47553aa5e8d0bb5f8eec63acac7f4c25a6d8, mostly
[FreeBSD/FreeBSD.git] / contrib / dialog / samples / checklist-utf8
1 #! /bin/sh
2 # $Id: checklist-utf8,v 1.12 2010/01/13 10:20:03 tom Exp $
3
4 . ./setup-vars
5
6 . ./setup-tempfile
7
8 . ./setup-utf8
9
10 $DIALOG --backtitle "No Such Organization" \
11         --title "CHECKLIST BOX" "$@" \
12         --checklist "Hi, this is a checklist box. You can use this to \n\
13 present a list of choices which can be turned on or \n\
14 off. If there are more items than can fit on the \n\
15 screen, the list will be scrolled. You can use the \n\
16 UP/DOWN arrow keys, the first letter of the choice as a \n\
17 hot key, or the number keys 1-9 to choose an option. \n\
18 Press SPACE to toggle an option on/off. \n\n\
19   Which of the following are fruits?" 20 61 5 \
20         "APPLE"        "It's an APPLE." off \
21         "DOG"      "No, that's not my DOG." ON \
22         "ORANGE"     "Yeah, that's JUICY." off \
23         "CHICKEN" "Normally not a PET." off \
24         "CAT"      "No, never put a DOG and a CAT together!" oN \
25         "FISH"   "Cats like FISH." On \
26         "LEMON"        "You KNOW how it TASTES." on 2> $tempfile
27
28 retval=$?
29
30 . ./report-tempfile