diff options
Diffstat (limited to 'contrib/dialog/samples/pause-both')
-rwxr-xr-x | contrib/dialog/samples/pause-both | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/dialog/samples/pause-both b/contrib/dialog/samples/pause-both new file mode 100755 index 0000000..aa72936 --- /dev/null +++ b/contrib/dialog/samples/pause-both @@ -0,0 +1,14 @@ +#!/bin/sh +# $Id: pause-both,v 1.1 2011/01/18 09:49:24 tom Exp $ + +. ./setup-vars + +$DIALOG --title "PAUSE" \ + --help-button \ + --extra-button "$@" \ + --pause "Hi, this is a pause widget" 20 70 10 + +retval=$? +echo return $retval + +. ./report-button |