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