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