1#!/bin/sh
2# $Id: yesno2,v 1.7 2010/01/13 10:40:39 tom Exp $
3
4. ./setup-vars
5
6$DIALOG --title "YES/NO BOX" "$@" \
7        --yesno "Hi, this is a yes/no dialog box. You can use this to ask \
8questions that have an answer of either yes or no. \
9BTW, do you notice that long lines will be automatically \
10wrapped around so that they can fit in the box? You can \
11also control line breaking explicitly by inserting \
12'backslash n' at any place you like, but in this case, \
13auto wrap around will be disabled and you will have to \
14control line breaking yourself." 0 0
15
16retval=$?
17
18. ./report-yesno
19