10 lines
223 B
Bash
Executable File
10 lines
223 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: calendar-stdout,v 1.8 2020/11/26 00:09:12 tom Exp $
|
|
|
|
. ./setup-vars
|
|
|
|
returntext=`$DIALOG --stdout --title "CALENDAR" "$@" --calendar "Please choose a date..." 0 0 7 7 1981`
|
|
returncode=$?
|
|
|
|
. ./report-string
|