DATE.1
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:3k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. DATE(1)                   Minix Programmer's Manual                    DATE(1)
  2. NAME
  3.      date - print or set the date and time
  4. SYNOPSIS
  5.      date [-qsu] [[MMDDYY]hhmm[ss]] [+format]
  6. OPTIONS
  7.      -q   Read the date from stdin
  8.      -s   Set the time (implicit for -q or a date string)
  9.      -u   Print the date as GMT
  10.      -t   Use this number of seconds instead of current time
  11. EXAMPLES
  12.      date                # Print the date and time
  13.      date 0221921610     # Set date to Feb 21, 1992 at 4:10 p.m.
  14. DESCRIPTION
  15.      With the -q flag or a numeric argument, date sets the GMT time and  date.
  16.      MMDDYY  refers  to  the  month, day, and year; hhmmss refers to the hour,
  17.      minute and second.  Each of the six fields must be exactly two digits, no
  18.      more  and  no  less.   date  always  display  the date and time, with the
  19.      default format for the system.  The -u flag request GMT time  instead  of
  20.      local time.  A format may be specified with a + followed by a printf-like
  21.      string with the following options:
  22.         %%  % character
  23.         %A  Name of the day
  24.         %B  Name of the month
  25.         %D  mm/dd/yy
  26.         %H  Decimal hour on 2 digits
  27.         %I  Decimal hour modulo 12 on 2 digits
  28.         %M  Decimal minute on 2 digits
  29.         %S  Decimal seconds on 2 digits
  30.         %T  HH:MM:SS
  31.         %U  Decimal week number, Sunday being first day of week
  32.         %W  Decimal week number, Monday being first day of week
  33.         %X  Same as %T
  34.         %Y  Decimal year on 4 digits
  35.         %Z  Time Zone (if any)
  36.         %a  Abbreviated name of the day
  37.         %b  Abbreviated name of the month
  38.         %c  Appropriate date & time (default format)
  39.         %d  Decimal day of the month on 2 digits
  40.                                                                              1
  41. DATE(1)                   Minix Programmer's Manual                    DATE(1)
  42.         %e  Same as %d, but a space replaces leading 0
  43.         %h  Same as %b
  44.         %j  Decimal dey of the year on 3 digits
  45.         %m  Decimal month on 2 digits
  46.         %n  Newline character
  47.         %p  AM or PM
  48.         %r  12-hour clock time with AM/PM
  49.         %s  Number of seconds since the epoch
  50.         %t  Tab character
  51.         %w  Decimal day of the week (0=Sunday)
  52.         %x  Same as %D
  53.         %y  Decimal year on 2 digits
  54. SEE ALSO
  55.      time(2), ctime(3), readclock(8).
  56.                                                                              2