fix: _brightness.sh - find brighness files with '*video*' path (multiple files)
[cmdllinux.git] / buildroot / _wget / report-yesno
blobd22ebe4194e24a2f0448ad8f358c591b0f49856d
1 #!/bin/sh
2 # $Id: report-yesno,v 1.2 2012/06/29 09:32:12 tom Exp $
3 # Report button-only, no $RESULT
4 # vile:shmode
6 case $retval in
7 $DIALOG_OK)
8 echo "YES";;
9 $DIALOG_CANCEL)
10 echo "NO";;
11 $DIALOG_HELP)
12 echo "Help pressed.";;
13 $DIALOG_EXTRA)
14 echo "Extra button pressed.";;
15 $DIALOG_ITEM_HELP)
16 echo "Item-help button pressed.";;
17 $DIALOG_ERROR)
18 echo "ERROR!";;
19 $DIALOG_ESC)
20 echo "ESC pressed.";;
21 esac