9 lines
No EOL
187 B
Bash
Executable file
9 lines
No EOL
187 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if zenity --calendar \
|
|
--title="Select a Date" \
|
|
--text="Click on a date to select that date." \
|
|
--day=10 --month=8 --year=2004
|
|
then echo $?
|
|
else echo "No date selected"
|
|
fi |