/contrib/dialog/samples/radiolist2
Shell | 30 lines | 25 code | 3 blank | 2 comment | 0 complexity | cee7582d5ae856ca1d9c4d7851fcea59 MD5 | raw file
1#! /bin/sh 2# $Id: radiolist2,v 1.8 2010/01/13 10:20:03 tom Exp $ 3 4. ./setup-vars 5 6. ./setup-tempfile 7 8$DIALOG --ok-label Okay \ 9 --cancel-label 'Give Up' \ 10 --backtitle "No Such Organization" \ 11 --title "RADIOLIST BOX" --clear "$@" \ 12 --radiolist "Hi, this is a radiolist 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 "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!" off \ 25 "Fish" "Cats like fish." off \ 26 "Lemon" "You know how it tastes." off 2> $tempfile 27 28retval=$? 29 30. ./report-tempfile