fix: _brightness.sh - find brighness files with '*video*' path (multiple files)
[cmdllinux.git] / buildroot / _wget / yesno
blobac509abfc4009108cdba4fbdd0e5e5573cfd18fc
1 #!/bin/sh
2 # $Id: yesno,v 1.9 2010/01/14 01:11:11 tom Exp $
4 . ./setup-vars
6 #debian.rc
7 #slackware.rc
8 #sourcemage.rc
9 #suse.rc
10 #whiptail.rc
12 DIALOGRC=sourcemage.rc
13 export DIALOGRC
16 DIALOG_ERROR=254
17 export DIALOG_ERROR
19 $DIALOG --title "YES/NO BOX" --clear "$@" \
20 --yesno "Hi, this is a yes/no dialog box. You can use this to ask \
21 questions that have an answer of either yes or no. \
22 BTW, do you notice that long lines will be automatically \
23 wrapped around so that they can fit in the box? You can \
24 also control line breaking explicitly by inserting \
25 'backslash n' at any place you like, but in this case, \
26 auto wrap around will be disabled and you will have to \
27 control line breaking yourself." 15 61
29 retval=$?
31 . ./report-yesno