1.查看命令的帮助信息
man mkdir
2.查看服务配置文件的帮助信息
man services
说明:
a.如果没有man通过yum install man安装
b.如果命令和服务同名了,那就指定清楚
1.Linux中通过whereis xxx可以看到xxx的命令和帮助文档地址
2.帮助文档如果是xxx.1.gz则xxx为命令
3.帮助文档如果是xxx.5.gz则xxx为服务
4.这时候使用man的时候可以加上1或者5来指定,例如:man 5 xxx
c.只能查看非bash级别的命令
d.如果是bash级别的命令,通过help命令查看,例如:help cd
e.如果区别一个命令是bash还是非bash的?
# which cd
/usr/bin/which: no cd in (......)
# man cd
NAME
bash, :, ., [, alias, bg, bind, break, builtin, caller, cd, command, compgen,
complete, compopt, continue, declare, dirs, disown, echo, enable, eval, exec,
exit, export, false, fc, fg, getopts, hash, help, history, jobs, kill, let,
local, logout, mapfile, popd, printf, pushd, pwd, read, readonly, return, set,
shift, shopt, source, suspend, test, times, trap, true, type, typeset, ulimit,
umask, unalias, unset, wait - bash built-in commands, see bash(1)