linux查看命令帮助的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux查看命令帮助的方法相关的知识,希望对你有一定的参考价值。
1.使用man命令查看
栗子:
[[email protected] ~]# man cd
执行man命后的帮助信息简介:
帮助标题 | 功能说明 |
---|---|
NAME | 命令说明及介绍 |
SYNOPSIS | 基本使用语法 |
DESCRIPTION | 参数选项说明 |
man帮助页面快捷键
快捷键 | 功能说明 |
---|---|
/string | 向下搜索string字符串 |
?string | 向上搜索string字符串 |
n,N | 当使用"/"或"?"搜索 字符串时,n继续按相同方向查询,N则按照反向查询。例子:/string 向下查找string,输入n则继续向下查找string,输入N则向上查找string。?string向上查找string,输入n则继续向上查找,输入N则向下查找string |
q | 结束本次man帮助 |
3.2.使用--help参数查看
使用"命令 --help"可以查看简短的命令帮助信息。
[[email protected] ~]# mkdir --help
Usage: mkdir [OPTION]... DIRECTORY...
Create the DIRECTORY(ies), if they do not already exist.
Mandatory arguments to long options are mandatory for short options too.
-m, --mode=MODE set file mode (as in chmod), not a=rwx - umask
-p, --parents no error if existing, make parent directories as needed
-v, --verbose print a message for each created directory
-Z, --context=CTX set the SELinux security context of each created
3.使用help命令查看bash内置命令
help命令只能查看bash内置的命令。
[[email protected] ~]# help cd
cd: cd [-L|-P] [dir]
Change the shell working directory.
以上是关于linux查看命令帮助的方法的主要内容,如果未能解决你的问题,请参考以下文章