Linux命令(36)help命令
help命令
- 功能说明:查看shell内部命令的帮助信息
- 用法 help [内部命令名]
示例1:不带任何选项的help命令显示所有的shell内部命令
[root@node1 ~]# help
示例2:显示cd命令的使用方法
[root@node1 ~]# help cd
cd: cd [-L|[-P [-e]]] [dir]
Change the shell working directory.
Change the current directory to DIR. The default DIR is the value of the
HOME shell variable.
...