This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

18 lines
325 B
Bash
Executable File

#!/bin/sh
# $Id: timebox2,v 1.3 2003/10/09 22:45:06 tom Exp $
: ${DIALOG=dialog}
exec 3>&1
USERTIME=`$DIALOG --title "TIMEBOX" --timebox "Please set the time..." 0 0 2>&1 1>&3`
code=$?
exec 3>&-
case $code in
0)
echo "Time entered: $USERTIME.";;
1)
echo "Cancel pressed.";;
255)
echo "Box closed.";;
esac