📅  最后修改于: 2020-10-31 14:56:25             🧑  作者: Mango
所有的Unix命令都带有许多可选和强制性选项。忘记这些命令的完整语法是很常见的。
因为没有人可能记得每个Unix命令及其所有选项,所以从Unix处于开发阶段开始,我们就提供了在线帮助来减轻这一权利。
Unix的帮助文件版本称为手册页。如果有命令名称,但您不确定如何使用它,则手册页会帮助您完成所有步骤。
这是一个简单的命令,可帮助您在使用系统时获取任何Unix命令的详细信息-
$man command
假设有一条命令需要您获得帮助;假设您想了解pwd,则只需使用以下命令-
$man pwd
上面的命令可帮助您了解有关pwd命令的完整信息。在命令提示符处尝试一下,以获取更多详细信息。
您可以使用以下命令获取有关man命令本身的完整详细信息-
$man man
手册页通常分为几部分,通常随手册页作者的喜好而有所不同。下表列出了一些常见的部分-
Sr.No. | Section & Description |
---|---|
1 |
NAME Name of the command |
2 |
SYNOPSIS General usage parameters of the command |
3 |
DESCRIPTION Describes what the command does |
4 |
OPTIONS Describes all the arguments or options to the command |
5 |
SEE ALSO Lists other commands that are directly related to the command in the man page or closely resemble its functionality |
6 |
BUGS Explains any known issues or bugs that exist with the command or its output |
7 |
EXAMPLES Common usage examples that give the reader an idea of how the command can be used |
8 |
AUTHORS The author of the man page/command |
综上所述,当您需要有关Unix系统中的命令或文件的信息时,手册页是至关重要的资源,也是研究的第一个途径。
以下链接为您提供了最重要且最常用的Unix Shell命令的列表。
如果您不知道如何使用任何命令,请使用手册页获取有关该命令的完整详细信息。
这是Unix Shell的列表-有用的命令