]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - contrib/dialog/samples/yesno-both
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / contrib / dialog / samples / yesno-both
1 #!/bin/sh
2 # $Id: yesno-both,v 1.5 2010/01/13 10:40:39 tom Exp $
3
4 . ./setup-vars
5
6 $DIALOG --title "YES/NO/MAYBE BOX" \
7         --clear \
8         --ok-label "Next" \
9         --no-label "Cancel" \
10         --extra-label "Previous" --extra-button \
11         --help-button "$@" \
12         --yesno "Hi, this is a yes/no dialog box with its labels changed. \
13                  You can use this to ask \
14                  questions that have an answer of either yes or no (or maybe). \
15                  BTW, do you notice that long lines will be automatically \
16                  wrapped around so that they can fit in the box? You can \
17                  also control line breaking explicitly by inserting \
18                  'backslash n' at any place you like, but in this case, \
19                  auto wrap around will be disabled and you will have to \
20                  control line breaking yourself." 15 61
21
22 retval=$?
23
24 . ./report-yesno