]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/dialog/samples/radiolist
Add LLVM openmp trunk r351319 (just before the release_80 branch point)
[FreeBSD/FreeBSD.git] / contrib / dialog / samples / radiolist
1 #! /bin/sh
2 # $Id: radiolist,v 1.13 2010/01/13 10:20:03 tom Exp $
3
4 . ./setup-vars
5
6 . ./setup-tempfile
7
8 $DIALOG --backtitle "No Such Organization" \
9         --title "RADIOLIST BOX" --clear "$@" \
10         --radiolist "Hi, this is a radiolist box. You can use this to \n\
11 present a list of choices which can be turned on or \n\
12 off. If there are more items than can fit on the \n\
13 screen, the list will be scrolled. You can use the \n\
14 UP/DOWN arrow keys, the first letter of the choice as a \n\
15 hot key, or the number keys 1-9 to choose an option. \n\
16 Press SPACE to toggle an option on/off. \n\n\
17   Which of the following are fruits?" 20 61 5 \
18         "Apple"  "It's an apple." off \
19         "Dog"    "No, that's not my dog." ON \
20         "Orange" "Yeah, that's juicy." off \
21         "Chicken"    "Normally not a pet." off \
22         "Cat"    "No, never put a dog and a cat together!" off \
23         "Fish"   "Cats like fish." off \
24         "Lemon"  "You know how it tastes." off 2> $tempfile
25
26 retval=$?
27
28 . ./report-tempfile