date - print or set the system date and time
| Use Case | Command | Description |
|---|---|---|
| đ Display current date/time | date | Show current system date and time |
| đ¨ Custom format | date +"%Y-%m-%d" | Display date in YYYY-MM-DD format |
| đ Convert epoch to date | date --date='@2147483647' | Convert seconds since 1970-01-01 to date |
| đ Different timezone | TZ='America/Los_Angeles' date | Show time in a specific timezone |
| đ§ Set system date | date -s "2025-01-01 12:00:00" | Set the system date/time (requires root) |
date [OPTION]... [+FORMAT]
date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]]
Display the current time in the given FORMAT, or set the system date.
Mandatory arguments to long options are mandatory for short options too.
FORMAT controls the output. Interpreted sequences are:
%% â a literal %%a â locale's abbreviated weekday name (e.g., Sun)%A â locale's full weekday name (e.g., Sunday)%b â locale's abbreviated month name (e.g., Jan)%B â locale's full month name (e.g., January)%c â locale's date and time (e.g., Thu Mar 3 23:05:25 2005)%C â century; like %Y, except omit last two digits (e.g., 20)%d â day of month (e.g., 01)%D â date; same as %m/%d/%y%e â day of month, space padded; same as %_d%F â full date; like %+4Y-%m-%d%g â last two digits of year of ISO week number (see %G)%G â year of ISO week number (see %V); normally useful only with %V%h â same as %b%H â hour (00..23)%I â hour (01..12)%j â day of year (001..366)%k â hour, space padded ( 0..23); same as %_H%l â hour, space padded ( 1..12); same as %_I%m â month (01..12)%M â minute (00..59)%n â a newline%N â nanoseconds (000000000..999999999)%p â locale's equivalent of either AM or PM; blank if not known%P â like %p, but lower case%q â quarter of year (1..4)%r â locale's 12-hour clock time (e.g., 11:11:04 PM)%R â 24-hour hour and minute; same as %H:%M%s â seconds since 1970-01-01 00:00:00 UTC%S â second (00..60)%t â a tab%T â time; same as %H:%M:%S%u â day of week (1..7); 1 is Monday%U â week number of year, with Sunday as first day of week (00..53)%V â ISO week number, with Monday as first day of week (01..53)%w â day of week (0..6); 0 is Sunday%W â week number of year, with Monday as first day of week (00..53)%x â locale's date representation (e.g., 12/31/99)%X â locale's time representation (e.g., 23:13:48)%y â last two digits of year (00..99)%Y â year%z â +hhmm numeric time zone (e.g., -0400)%:z â +hh:mm numeric time zone (e.g., -04:00)%::z â +hh:mm:ss numeric time zone (e.g., -04:00:00)%:::z â numeric time zone with : to necessary precision (e.g., -04, +05:30)%Z â alphabetic time zone abbreviation (e.g., EDT)By default, date pads numeric fields with zeroes. The following optional flags may follow '%':
- (hyphen) do not pad the field_ (underscore) pad with spaces0 (zero) pad with zeros+ pad with zeros, and put '+' before future years with >4 digits^ use upper case if possible# use opposite case if possibleAfter any flags comes an optional field width, as a decimal number; then an optional modifier, which is either E to use the locale's alternate representations if available, or O to use the locale's alternate numeric symbols if available.
Convert seconds since the epoch (1970-01-01 UTC) to a date
$ date --date='@2147483647'
Show the time on the west coast of the US (use tzselect(1) to find TZ)
$ TZ='America/Los_Angeles' date
Show the local time for 9AM next Friday on the west coast of the US
$ date --date='TZ="America/Los_Angeles" 09:00 next Fri'
The --date=STRING is a mostly free format human readable date string such as "Sun, 29 Feb 2004 16:21:42 -0800" or "2004-02-29 16:21:42" or even "next Thursday". A date string may contain items indicating calendar date, time of day, time zone, day of week, relative time, relative date, and numbers. An empty string indicates the beginning of the day. The date string format is more complex than is easily documented here but is fully described in the info documentation.
Written by David MacKenzie.
GNU coreutils online help: <https://www.gnu.org/software/coreutils/>
Report any translation bugs to <https://translationproject.org/team/>
Copyright Š 2020 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
Full documentation <https://www.gnu.org/software/coreutils/date>
or available locally via: info '(coreutils) date invocation'
GNU coreutils 8.32 January 2026 DATE(1)
Generated by phpman v4.9.26-5-g7740029 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-08-27 09:17 @216.73.217.112
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)