8 lines
185 B
Bash
8 lines
185 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')
|
||
|
|
#cal -yw
|
||
|
|
#read -n 1 -r -s
|