mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 21:54:24 +00:00
16 lines
231 B
Markdown
16 lines
231 B
Markdown
# Date
|
|
|
|
1. [TL;DR](#tldr)
|
|
|
|
## TL;DR
|
|
|
|
```sh
|
|
# Print the current date in the 'YYYY-MM-DD' format.
|
|
date '+%F'
|
|
date '+%Y-%m-%d'
|
|
|
|
# Print the current date in the 'YYYY-MM-DDThh:mm:SS' format.
|
|
date '+%FT%T'
|
|
date '+%Y-%m-%dT%H:%M:%S'
|
|
```
|