mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* pages/*: add and update Indonesian translations * common/ls, windows/comp: fix Indonesian translations * Update comp.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update comp.md --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
20 lines
502 B
Markdown
20 lines
502 B
Markdown
# date
|
|
|
|
> Atur atau tampilkan tanggal sistem.
|
|
> Informasi lebih lanjut: <https://keith.github.io/xcode-man-pages/date.1.html>.
|
|
|
|
- Tampilkan tanggal saat ini menggunakan format _locale_:
|
|
|
|
`date +%c`
|
|
|
|
- Tampilkan tanggal saat ini dalam format UTC and ISO 8601:
|
|
|
|
`date -u +%Y-%m-%dT%H:%M:%SZ`
|
|
|
|
- Tampilkan tanggal saat ini sebagai _Unix timestamp_ (detik sejak jaman Unix):
|
|
|
|
`date +%s`
|
|
|
|
- Tampilkan tanggal tertentu (diwakili sebagai _Unix timestamp_) menggunakan format bawaan:
|
|
|
|
`date -r {{1473305798}}`
|