2018-09-26 17:06:39 +08:00
|
|
|
|
---
|
|
|
|
|
title: Linux 帮助命令
|
|
|
|
|
date: 2018/09/26
|
|
|
|
|
categories:
|
|
|
|
|
- linux
|
|
|
|
|
tags:
|
|
|
|
|
- linux
|
|
|
|
|
- command
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# Linux 帮助命令
|
|
|
|
|
|
2018-09-27 14:32:58 +08:00
|
|
|
|
> 关键词:`help`, `whatis`, `info`, `man`
|
2018-09-26 17:06:39 +08:00
|
|
|
|
|
|
|
|
|
<!-- TOC depthFrom:2 depthTo:2 -->
|
|
|
|
|
|
|
|
|
|
- [help](#help)
|
|
|
|
|
- [whatis](#whatis)
|
|
|
|
|
- [info](#info)
|
|
|
|
|
- [man](#man)
|
|
|
|
|
|
|
|
|
|
<!-- /TOC -->
|
|
|
|
|
|
|
|
|
|
## help
|
|
|
|
|
|
|
|
|
|
> help 命令用于显示 Shell 内部命令的帮助信息。而对于外部命令的帮助信息只能使用 man 或者 info 命令查看。
|
|
|
|
|
>
|
|
|
|
|
> 参考:http://man.linuxde.net/help
|
|
|
|
|
|
|
|
|
|
## whatis
|
|
|
|
|
|
|
|
|
|
> whatis 用于查询一个命令执行什么功能。
|
|
|
|
|
>
|
|
|
|
|
> 参考:http://man.linuxde.net/whatis
|
|
|
|
|
|
|
|
|
|
## info
|
|
|
|
|
|
|
|
|
|
> info 是 Linux 下 info 格式的帮助指令。
|
|
|
|
|
>
|
|
|
|
|
> 参考:http://man.linuxde.net/info
|
|
|
|
|
|
|
|
|
|
## man
|
|
|
|
|
|
|
|
|
|
> man 命令是 Linux 下的帮助指令,通过 man 指令可以查看 Linux 中的指令帮助、配置文件帮助和编程帮助等信息。
|
|
|
|
|
>
|
|
|
|
|
> 参考:http://man.linuxde.net/man
|