blob: 0cbc323c723edf79b79914bb1175f03bb92cff36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# $Id: calendar2,v 1.3 2003/10/09 22:45:06 tom Exp $
: ${DIALOG=dialog}
exec 3>&1
USERDATE=`$DIALOG --title "CALENDAR" --calendar "Please choose a date..." 0 0 2>&1 1>&3`
code=$?
exec 3>&-
case $code in
0)
echo "Date entered: $USERDATE.";;
1)
echo "Cancel pressed.";;
255)
echo "Box closed.";;
esac
|