{
    "content": [
        {
            "type": "text",
            "text": "# date (pydoc)\n\n## TLDR\n\n> Set or display the system date.\n\n- Display the current date using the default locale's format:\n  `date +%c`\n- Display the current date in UTC, using the ISO 8601 format:\n  `date {{-u|--utc}} +%Y-%m-%dT%H:%M:%S%Z`\n- Display the current date as a Unix timestamp (seconds since the Unix epoch):\n  `date +%s`\n- Convert a date specified as a Unix timestamp to the default format:\n  `date {{-d|--date}} @{{1473305798}}`\n- Convert a given date to the Unix timestamp format:\n  `date {{-d|--date}} \"{{2018-09-01 00:00}}\" +%s {{-u|--utc}}`\n- Display the current date using the RFC-3339 format (`YYYY-MM-DD hh:mm:ss TZ`) and specify its precision:\n  `date --rfc-3339 {{date|seconds|ns}}`\n- Set the current date using the format `MMDDhhmmYYYY.ss` (`YYYY` and `.ss` are optional):\n  `sudo date {{093023592021.59}}`\n- Display the current ISO week number:\n  `date +%V`\n\n*Source: tldr-pages*\n\n---\n\n## Full Content\n\n"
        }
    ],
    "structuredContent": {
        "command": "date",
        "section": "",
        "mode": "pydoc",
        "summary": null,
        "synopsis": null,
        "tldr_summary": "Set or display the system date.",
        "tldr_examples": [
            {
                "description": "Display the current date using the default locale's format",
                "command": "date +%c"
            },
            {
                "description": "Display the current date in UTC, using the ISO 8601 format",
                "command": "date {{-u|--utc}} +%Y-%m-%dT%H:%M:%S%Z"
            },
            {
                "description": "Display the current date as a Unix timestamp (seconds since the Unix epoch)",
                "command": "date +%s"
            },
            {
                "description": "Convert a date specified as a Unix timestamp to the default format",
                "command": "date {{-d|--date}} @{{1473305798}}"
            },
            {
                "description": "Convert a given date to the Unix timestamp format",
                "command": "date {{-d|--date}} \"{{2018-09-01 00:00}}\" +%s {{-u|--utc}}"
            },
            {
                "description": "Display the current date using the RFC-3339 format (`YYYY-MM-DD hh:mm:ss TZ`) and specify its precision",
                "command": "date --rfc-3339 {{date|seconds|ns}}"
            },
            {
                "description": "Set the current date using the format `MMDDhhmmYYYY.ss` (`YYYY` and `.ss` are optional)",
                "command": "sudo date {{093023592021.59}}"
            },
            {
                "description": "Display the current ISO week number",
                "command": "date +%V"
            }
        ],
        "tldr_source": "official",
        "flags": [],
        "examples": [],
        "see_also": [],
        "section_outline": []
    }
}