date - print or set the system date and time
| Use Case | Command | Description |
|---|---|---|
| â° Display current date & time | date | Default output with day month date time timezone year |
| đĸ Format date | date '+%Y-%m-%d %H:%M:%S' | Custom format using % sequences |
| đ ISO 8601 date only | date --iso-8601 | Output in YYYY-MM-DD format |
| âąī¸ Seconds since epoch to date | date --date='@2147483647' | Convert Unix timestamp |
| đ Show UTC time | date -u | Coordinated Universal Time |
| đ Show file modification time | date -r /etc/passwd | Last modification timestamp |
| đ Set system date | date -s '2025-01-01 12:00:00' | Set date (requires root) |
| đ Parse & debug date string | date --debug --date='next Thursday' | Show parsed date interpretation |
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 spaces
0 (zero) â pad with zeros
+ â pad with zeros, and put '+' before future years with >4 digits
^ â use upper case if possible
# â use opposite case if possible
After 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.
$ date --date='@2147483647'
$ TZ='America/Los_Angeles' date
$ 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'
Generated by phpman v4.9.22-1-g1b0fcb4 · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-05 06:30 @216.73.216.52
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-pro / taotoken.net / www.chedong.com - original format