nushell/docs/commands/date.md

53 lines
1.0 KiB
Markdown
Raw Normal View History

2019-10-01 03:30:17 +02:00
# date
Use `date` to get the current date and time. Defaults to local timezone but you can get it in UTC too.
## Flags
--utc
2019-10-01 16:21:56 +02:00
Returns the current date and time in UTC
2019-10-01 03:30:17 +02:00
--local
2019-10-01 16:21:56 +02:00
Returns the current date and time in your local timezone
2019-10-01 03:30:17 +02:00
## Examples
```shell
> date
──────────┬────────
year │ 2020
month │ 6
day │ 21
hour │ 18
minute │ 3
second │ 43
timezone │ -04:00
──────────┴────────
```
```shell
2019-10-01 03:30:17 +02:00
> date --utc
──────────┬──────
year │ 2020
month │ 6
day │ 21
hour │ 22
minute │ 3
second │ 53
timezone │ UTC
──────────┴──────
```
```shell
2019-10-01 03:30:17 +02:00
> date --local
──────────┬────────
year │ 2020
month │ 6
day │ 21
hour │ 18
minute │ 4
second │ 3
timezone │ -04:00
──────────┴────────
2019-10-01 03:30:17 +02:00
```