6 lines
159 B
Bash
6 lines
159 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
# show year calendar with week numbers
|
||
|
|
# and press any key to exit
|
||
|
|
dialog --date-format %Y/%m/%d --calendar "Select a date" 0 0 $(date +'%d %m %Y')
|