nushell/docs/commands/date_format.md
Justin Ma c0a1d18e3d
update #4455, regenerate commands' docs and update make_docs script (#4586)
* feat: update #4455, regenerate commands' docs

* chore: update make_docs script
2022-02-21 11:26:00 -06:00

39 lines
695 B
Markdown

---
title: date format
layout: command
version: 0.59.0
---
Format a given date using a format string.
## Signature
```> date format (format string) --list```
## Parameters
- `format string`: the desired date format
- `--list`: lists strftime cheatsheet
## Examples
Format a given date using the default format (RFC 2822).
```shell
> "2021-10-22 20:00:12 +01:00" | date format
```
Format a given date using a given format string.
```shell
> date format '%Y-%m-%d'
```
Format a given date using a given format string.
```shell
> date format "%Y-%m-%d %H:%M:%S"
```
Format a given date using a given format string.
```shell
> "2021-10-22 20:00:12 +01:00" | date format "%Y-%m-%d"
```