blob: 631394e8cf7f89b18e447ad14aef7f78c22c8f8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/sh
# $Id: pause-help,v 1.1 2005/12/06 00:02:52 tom Exp $
: ${DIALOG=dialog}
$DIALOG --title "PAUSE" \
--help-button \
--pause "Hi, this is a pause widget" 20 70 10
retval=$?
case $retval in
0)
echo "Timeout expired.";;
1)
echo "Button 1 (Cancel) pressed.";;
2)
echo "Button 2 (Help) pressed.";;
3)
echo "Button 3 (Extra) pressed.";;
255)
echo "ESC pressed.";;
*)
echo "Unexpected return code: $retval";;
esac
|