Home
        <a name=

date

Display or change the date

SYNTAX
      date [OPTION]... [+FORMAT]
   or:  
      date [OPTION] [MMDDhhmm[[CC]YY][.ss]]

`date' with no arguments prints the current time and date, in the
format of the `%c' directive (described below).

If given an argument that starts with a `+', `date' prints the
current time and date (or the time and date specified by the `--date'
option, see below) in the format defined by that argument, which is the
same as in the `strftime' function.  Except for directives, which start
with `%', characters in the format string are printed unchanged.  The
directives are described below.

OPTIONS
  -d, --date=STRING         display time described by STRING, not `now'
                            DATESTR can be in almost any common format.  
                            It can contain month names, timezones, `am' and `pm',
                            `yesterday', `ago', `next', etc.

  -f, --file=DATEFILE       like --date once for each line of DATEFILE
                            If DATEFILE is `-', use standard input.  This is
                            useful when you have many dates to process, 
                            because the system overhead of starting up the
                            `date' executable many times can be considerable.

  -I, --iso-8601[=TIMESPEC] output an ISO-8601 compliant date/time string., `%Y-%m-%d'.
                            TIMESPEC=`date' (or missing) for date only,
                            `hours', `minutes', or `seconds' for date and
                            time to the indicated precision.
                            If showing any time terms, then include the time zone 
                            using the format `%z'.  If `--utc' is also specified, 
                            use `%Z' in place of `%z'.

  -r, --reference=FILE      display the last modification time of FILE

  -R, --rfc-822             output RFC-822 compliant date string

  -s, --set=STRING          set time described by STRING (see -d above)

  -u, --utc, --universal    print or set Coordinated Universal Time

      --help                display this help and exit
      --version             output version information and exit

FORMAT controls the output.  The only valid option for the second form
specifies Coordinated Universal Time.  Interpreted sequences are:

  %%   a literal %
  %a   locale's abbreviated weekday name (Sun..Sat)
  %A   locale's full weekday name, variable length (Sunday..Saturday)
  %b   locale's abbreviated month name (Jan..Dec)
  %B   locale's full month name, variable length (January..December)
  %c   locale's date and time (Sat Nov 04 12:02:33 EST 1989)
  %d   day of month (01..31)
  %D   date (mm/dd/yy)
  %e   day of month, blank padded ( 1..31)
  %h   same as %b, locale's abbreviated month name (Jan..Dec)
  %H   hour :24 hour(00..23)
  %I   hour :12 hour(01..12)
  %j   day of year (001..366)
  %k   hour :24 hour(00..23)
  %l   hour :12 hour(01..12)
  %m   month (01..12)
  %M   minute (00..59)
  %n   a newline
  %p   locale's AM or PM
  %r   time, 12-hour (hh:mm:ss [AP]M)
  %s   seconds since 00:00:00, Jan 1, 1970 (a GNU extension)
       Note that this value is defined by the localtime system
       call.  It isn't changed by the `--date' option.
  %S   second (00..60)
  %t   a horizontal tab
  %T   time, 24-hour (hh:mm:ss)
  %U   week number of year with Sunday as first day of week (00..53)
  %V   week number of year with Monday as first day of week (01..53)
       If the week containing January 1 has four or
       more days in the new year, then it is considered week 1;
       otherwise, it is week 53 of the previous year, and the next week
       is week 1. (See the ISO 8601: 1988 standard.)

  %w   day of week (0..6);  0 represents Sunday
  %W   week number of year with Monday as first day of week (00..53)
  %x   locale's date representation (mm/dd/yy)
  %X   locale's time representation (%H:%M:%S)
  %y   last two digits of year (00..99)
  %Y   year (1970...)
  %z   RFC-822 style numeric timezone (-0500) (a nonstandard extension)
       This value reflects the _current_ time zone.
       It isn't changed by the `--date' option.
  %Z   time zone (e.g., EDT), or nothing if no time zone is determinable
       This value reflects the _current_ time zone.
       It isn't changed by the `--date' option.

By default, date pads numeric fields with zeroes.  GNU date recognizes
the following modifiers between `%' and a numeric directive.

  `-' (hyphen) do not pad the field;  useful if the output is intended for
               human consumption.

  `_' (underscore) pad the field with spaces; useful if you need a fixed
                   number of characters in the output, but zeroes are too distracting.

The - and _ are GNU extensions.

   Here is an example illustrating the differences:

     date +%d/%m -d "Feb 1"
     => 01/02
     date +%-d/%-m -d "Feb 1"
     => 1/2
     date +%_d/%_m -d "Feb 1"
     =>  1/ 2

Setting the time
----------------
If given an argument that does not start with `+', `date' sets the
system clock to the time and date specified by that argument (as
described below).  You must have appropriate privileges to set the
system clock.  The `--date' and `--set' options may not be used with
such an argument.  The `--universal' option may be used with such an
argument to indicate that the specified time and date are relative to
Coordinated Universal Time rather than to the local time zone.

The argument must consist entirely of digits, which have the
following meaning:

MM     month
DD     day within month
HH     hour
MM     minute
CC     first two digits of year (optional)
YY     last two digits of year (optional)
SS     second (optional)

The `--set' option also sets the system clock; see the next section.

Examples of `date'

   * To print the date of the day before yesterday:
          date --date='2 days ago'

   * To print the date of the day three months and one day hence:
          date --date='3 months 1 day'

   * To print the day of year of Christmas in the current year:
          date --date='25 Dec' +%j

   * To print the current full month name and the day of the month:
          date '+%B %d'

     But this may not be what you want because for the first nine days
     of the month, the `%d' expands to a zero-padded two-digit field,
     for example `date -d 1may '+%B %d'' will print `May 01'.

   * Print a date without the leading zero for one-digit days of the
     month, you can use the (GNU extension) `-' modifier to suppress
     the padding altogether.
          date -d=1may '+%B %-d'

   * Print the current date and time in the format required by many
     non-GNU versions of `date' when setting the system clock:
          date +%m%d%H%M%Y.%S

   * Set the system date and time
          date --set=“2002-6-29 11:59 AM”   

   * Set the system clock forward by two minutes:
          date --set='+2 minutes'

   * Print the date in the format specified by RFC-822, use `date
     --rfc'.  I just did and saw this:

          Mon, 25 Mar 1996 23:34:17 -0600

   * To convert a date string to the number of seconds since the epoch
     (which is 1970-01-01 00:00:00 UTC), use the `--date' option with
     the `%s' format.  That can be useful in sorting and/or graphing
     and/or comparing data by date.  The following command outputs the
     number of the seconds since the epoch for the time one second later
     than the epoch, but in time zone five hours later (Cambridge,
     Massachusetts), thus a total of five hours and one second after
     the epoch:

          date --date='1970-01-01 00:00:01 UTC +5 hours' +%s
          18001

     Suppose you had _not_ specified time zone information in the
     example above.  Then, date would have used your computer's idea of
     the time zone when interpreting the string.  Here's what you would
     get if you were in Greenwich, England:

          # local time zone used
          date --date='1970-01-01 00:00:01' +%s
          1

   * If you're sorting or graphing dated data, your raw date values may
     be represented as seconds since the epoch.  But few people can
     look at the date `946684800' and casually note "Oh, that's the
     first second of the year 2000."

          date --date='2000-01-01 UTC' +%s
          946684800

     To convert such an unwieldy number of seconds back to a more
     readable form, use a command like this:

          date -d '1970-01-01 946684800 sec' +"%Y-%m-%d %T %z"
          2000-01-01 00:00:00 +0000

"Carpe Diem - Seize the day" - Horace

Related commands
:

cal - Display a calendar
crontab - Schedule a command to run at a later time
time - Measure Program Resource Use
times - User and system times
touch - Change file timestamps