如何在Centos中获取帮助

今天学习了3种在Centos中如何获取帮助的命令,现记录如下:

  • help cmd 用于获取内部命令的帮助信息
    如:
[root@Centos7 ~]# 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.
    
The variable CDPATH defines the search path for the directory containing DIR.  Alternative directory names in CDPATH are separated by a colon (:). A null directory name is the same as the current directory.  If DIR begins with a slash (/), then CDPATH is not used.
  • cmd --help 用于获取绝大多数外部命令的帮助
    如:
[root@Centos7 ~]# ls --help
Usage: ls [OPTION]... [FILE]...
List information about the FILEs (the current directory by default).
Sort entries alphabetically if none of -cftuvSUX nor --sort is specified.

Mandatory arguments to long options are mandatory for short options too.
  -a, --all                  do not ignore entries starting with .
  -A, --almost-all           do not list implied . and ..
      --author               with -l, print the author of each file
  • man cmd 直接查阅该命令的文档内容,非常详尽。
    如:
[root@Centos7 ~]# man ls
LS(1)                            User Commands                           LS(1)

NAME
       ls - list directory contents

SYNOPSIS
       ls [OPTION]... [FILE]...

DESCRIPTION
       List  information  about  the FILEs (the current directory by default).
       Sort entries alphabetically if none of -cftuvSUX nor --sort  is  speci‐
       fied.

       Mandatory  arguments  to  long  options are mandatory for short options
       too.

关于man的使用方法还是需要详细记录一下:

man存放在/usr/share/man 文件夹中,而在该文件夹中,根据目录类别,又分成了如下九个部分:

1:查看命令的帮助

2:查看可被内核调用的函数的函数的版主

3:查看函数和函数库的帮助

4:查看特殊文件的帮助(主要是/dev目录下的文件)

5:查看配置文件的帮助

6:查看游戏的帮助

7:查看其他杂项的帮助

8:查看系统管理员可用命令的帮助

9:查看和内核相关文件的帮助

  • 语法

man [OPTION...] [SECTION]

  • 常用参数
    -a:在所有的man帮助手册中搜索;
    -f:等价于whatis指令,显示给定关键字的简短描述信息;
    -P:指定内容时使用分页程序;
    -M:指定man手册搜索的路径。

你可能感兴趣的:(如何在Centos中获取帮助)