1#!/bin/sh
2# $Id: yesno,v 1.9 2010/01/14 01:11:11 tom Exp $
3
4. ./setup-vars
5
6DIALOG_ERROR=254
7export 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
19retval=$?
20
21. ./report-yesno
22