mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 01:26:03 +02:00
date: add Italian translation.
This commit is contained in:
parent
4b4e219e54
commit
aa6bb8a2fa
1 changed files with 23 additions and 0 deletions
23
pages.it/common/date.md
Normal file
23
pages.it/common/date.md
Normal file
|
@ -0,0 +1,23 @@
|
|||
# date
|
||||
|
||||
> Imposta o mostra data e ora di sistema.
|
||||
|
||||
- Mostra la data corrente utilizzando il formato predefinito della locale corrente:
|
||||
|
||||
`date +"%c"`
|
||||
|
||||
- Mostra la data corrente in UTC e formato ISO 8601:
|
||||
|
||||
`date -u +"%Y-%m-%dT%H:%M:%SZ"`
|
||||
|
||||
- Mostra la data corrente come timestamp Unix (secondi dall'epoca Unix):
|
||||
|
||||
`date +%s`
|
||||
|
||||
- Mostra una specifica data (rappresentata come timestamp Unix) utilizzando il formato predefinito:
|
||||
|
||||
`date -d @1473305798`
|
||||
|
||||
- Converti una specifica data in un timestamp Unix:
|
||||
|
||||
`date -d "{{2018-09-01 00:00}}" +%s --utc`
|
Loading…
Add table
Reference in a new issue