在使用man
命令查看date
的时候:
$ man date
DATE(1) BSD General Commands Manual DATE(1)
NAME
date -- display or set date and time
SYNOPSIS
date [-jRu] [-r seconds | filename] [-v [+|-]val[ymwdHMS]] ...
[+output_fmt]
date [-jnu] [[[mm]dd]HH]MM[[cc]yy][.ss]
date [-jnRu] -f input_fmt new_date [+output_fmt]
date [-d dst] [-t minutes_west]
DESCRIPTION
When invoked without arguments, the date utility displays the current
date and time. Otherwise, depending on the options specified, date will
set the date and time or print it in a user-defined way.
The date utility displays the date and time read from the kernel clock.
When used to set the date and time, both the kernel clock and the hard-
ware clock are updated.
Only the superuser may set the date, and if the system securelevel (see
第一行中的:
DATE(1) BSD General Commands Manual DATE(1)
请问下,前面的DATE(1)
和后面的DATE(1)
各是代表什么意思呢?
man man
就有答案,这个数字叫section(章节),不同的section代表手册的分类,比如命令帮助,头文件(.h)帮助,配置文件的帮助等等。其中最常见的section是
1
,5
,8
。一个非常经典的例子是
man passwd
和man 5 passwd
看到的section是不一样的,不指明section时,man手册会打开靠前的。想知道你要查看的帮助关键字有多少个section,用
whatis
命令就可以了,如: