DATE.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:

操作系统开发

开发平台:

C/C++

  1. .TH DATE 1
  2. .SH NAME
  3. date - print or set the date and time
  4. .SH SYNOPSIS
  5. fBdate [fB-qsufR] [[fIMMDDYYfR]fIhhmmfR[fIssfR]] [fI+formatfR]fR
  6. .br
  7. .de FL
  8. .TP
  9. \fB\$1\fR
  10. \$2
  11. ..
  12. .de EX
  13. .TP 20
  14. \fB\$1\fR
  15. # \$2
  16. ..
  17. .SH OPTIONS
  18. .FL "-q" "Read the date from fIstdinfR"
  19. .FL "-s" "Set the time (implicit for fB-qfR or a date string)"
  20. .FL "-u" "Print the date as GMT"
  21. .FL "-t" "Use this number of seconds instead of current time"
  22. .SH EXAMPLES
  23. .EX "date" "Print the date and time"
  24. .EX "date 0221921610" "Set date to Feb 21, 1992 at 4:10 p.m."
  25. .SH DESCRIPTION
  26. .PP
  27. With the fB-qfR flag or a numeric argument,
  28. .I date
  29. sets the GMT time and date.
  30. .I MMDDYY
  31. refers to the month, day, and year;
  32. .I hhmmss
  33. refers to the hour, minute and second.
  34. Each of the six fields must be exactly two digits, no more and no less.
  35. .I date
  36. always display the date and time, with the default format for the system.
  37. The fB-ufR flag request GMT time instead of local time.
  38. A format may be specified with a + followed by a printf-like string with
  39. the following options:
  40. .ta 0.25i
  41. .nf
  42. .PP
  43. %%  % character
  44. %A  Name of the day
  45. %B  Name of the month
  46. %D  mm/dd/yy
  47. %H  Decimal hour on 2 digits
  48. %I  Decimal hour modulo 12 on 2 digits
  49. %M  Decimal minute on 2 digits
  50. %S  Decimal seconds on 2 digits
  51. %T  HH:MM:SS
  52. %U  Decimal week number, Sunday being first day of week
  53. %W  Decimal week number, Monday being first day of week
  54. %X  Same as %T
  55. %Y  Decimal year on 4 digits
  56. %Z  Time Zone (if any)
  57. %a  Abbreviated name of the day
  58. %b  Abbreviated name of the month
  59. %c  Appropriate date & time (default format)
  60. %d  Decimal day of the month on 2 digits
  61. %e  Same as %d, but a space replaces leading 0
  62. %h  Same as %b
  63. %j  Decimal dey of the year on 3 digits
  64. %m  Decimal month on 2 digits
  65. %n  Newline character
  66. %p  AM or PM
  67. %r  12-hour clock time with AM/PM
  68. %s  Number of seconds since the epoch
  69. %t  Tab character
  70. %w  Decimal day of the week (0=Sunday)
  71. %x  Same as %D
  72. %y  Decimal year on 2 digits
  73. .SH "SEE ALSO"
  74. .BR time (2),
  75. .BR ctime (3),
  76. .BR readclock (8).