Current Path : /usr/src/contrib/dialog/samples/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/contrib/dialog/samples/report-string |
# $Id: report-string,v 1.2 2010/01/13 10:00:11 tom Exp $ # Report result passed in a string $RESULT # vile:shmode case $retval in $DIALOG_OK) echo "Result is $RESULT";; $DIALOG_CANCEL) echo "Cancel pressed.";; $DIALOG_HELP) echo "Help pressed ($RESULT).";; $DIALOG_EXTRA) echo "Extra button pressed.";; $DIALOG_ITEM_HELP) echo "Item-help button pressed.";; $DIALOG_ESC) if test -n "$RESULT" ; then echo "$RESULT" else echo "ESC pressed." fi ;; esac