/contrib/dialog/samples/yesno

https://bitbucket.org/freebsd/freebsd-head/ · Shell · 21 lines · 14 code · 5 blank · 2 comment · 0 complexity · 680e2e7cd715dc4f987632fec877515a MD5 · raw file

  1. #!/bin/sh
  2. # $Id: yesno,v 1.9 2010/01/14 01:11:11 tom Exp $
  3. . ./setup-vars
  4. DIALOG_ERROR=254
  5. export DIALOG_ERROR
  6. $DIALOG --title "YES/NO BOX" --clear "$@" \
  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. retval=$?
  16. . ./report-yesno