Linux命令03:man

简介:

man命令是Linux在线参考手册的接口命令,所有的Linux命令都有参考手册,虽然是英文的,但耐心认真的读参考手册,可以学到无穷的知识,也可以解决Linux的大部分问题。

手册分类

最常用的是1用户命令,3(p)库函数,7惯例和协议。

分类号 内容
1 User Commands
2 System Calls
3 C Library Functions
4 Devices and Special Files
5 File Formats and Conventions
6 Games et. Al.
7 Miscellanea
8 System Administration tools and Deamons
p POSIX Programmer’s Manual

关于Linux Programmer’s Manual和POSIX Programmer’s Manual的区别,也就是如33p的区别,见

Basically, the linux manuals are documentation of the commands/APIs from their writers; The POSIX manuals are from the POSIX standard. Usually, the “normal” ones are shorter and terser, but deal with the specific implementation; the POSIX ones are longer and more detailed (see man 3p read), but only tell what is in the standard.

The best is to look in both.

常用参数

-f:按照完整全名查找手册。其实,是调用whatis命令,用完整名查询whatis数据库。
-k:查询匹配的手册。其实,是调用apropos命令,用字符串匹配whatis数据库。
nono就是分类号码。直接进入命令的对应分类手册。

举个栗子

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
$ man -f man # 查询man的手册分类
man (7) - macros to format man pages
man (1) - an interface to the on-line reference manuals
man (1p) - display system documentation

$ man man # 进入man命令的参考手册 默认进入分类1

$ man 7 man # 进入man的分类7的手册

$ man -k printf # 查询所有包含printf字符串的手册
asprintf (3) - print to allocated string
dprintf (3) - print to a file descriptor
fprintf (3) - formatted output conversion
fprintf (3p) - print formatted output
fwprintf (3) - formatted wide-character output conversion
fwprintf (3p) - print formatted wide-character output
ldns_buffer_printf (3) - (unknown subject)
printf (1) - format and print data
printf (1p) - write formatted output
printf (3) - formatted output conversion
printf (3p) - print formatted output
...... # 省略了中间内容
wprintf (3p) - print formatted wide-character output

操作按键

按键 功能
j 向下
k 向上
space 下翻页
PgUp/u 上翻页
PgDn/d 下翻页
Home/gg 第一页
End/G 最后一页
/string 向下查找string
?string 向上查找string
n 下一个
N 上一个
q 退出
no 跳转到no行

其他

注意man命令其实是调用的less命令显示whatis数据库的内容,所以man的按键和less的按键是一样的,而less的命令和vim阅读模式的光标移动的按键是一样的。学了vim后,所有按键都会统一。
CentOS6.6的/etc/man.confman的配置文档,MANSECT参数可以设置显示分类的顺序。
CentOS7对应的是/etc/man_db.conf,参数是SECTION

~~ EOF ~~

目录
相关文章
|
20天前
|
Linux 数据安全/隐私保护 Windows
命令方式:window向linux传文件
【10月更文挑战第6天】本文介绍了如何在Linux系统中通过命令`ip a`获取IP地址,并在Windows系统下使用CMD命令行工具和SCP命令实现文件传输。示例展示了如何将D盘中的`mm.jar`文件上传至IP地址为192.168.163.122的Linux系统的/up/目录下,最后在Linux系统中确认文件传输结果。
202 65
|
8天前
|
运维 安全 Linux
Linux中传输文件文件夹的10个scp命令
【10月更文挑战第18天】本文详细介绍了10种利用scp命令在Linux系统中进行文件传输的方法,涵盖基础文件传输、使用密钥认证、复制整个目录、从远程主机复制文件、同时传输多个文件和目录、保持文件权限、跨多台远程主机传输、指定端口及显示传输进度等场景,旨在帮助用户在不同情况下高效安全地完成文件传输任务。
75 5
|
8天前
|
Linux
Linux系统之expr命令的基本使用
【10月更文挑战第18天】Linux系统之expr命令的基本使用
35 4
|
5天前
|
运维 监控 网络协议
|
6天前
|
监控 Linux Shell
|
8天前
|
Unix Linux
Linux | Rsync 命令:16 个实际示例(下)
Linux | Rsync 命令:16 个实际示例(下)
22 3
Linux | Rsync 命令:16 个实际示例(下)
|
12天前
|
安全 Linux
Linux系统之lsof命令的基本使用
【10月更文挑战第14天】Linux系统之lsof命令的基本使用
65 2
Linux系统之lsof命令的基本使用
|
19天前
|
Web App开发 网络协议 Linux
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
这篇文章是关于Linux命令的总结,涵盖了从基础操作到网络配置等多个方面的命令及其使用方法。
48 1
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
|
22天前
|
监控 安全 网络协议
|
13天前
|
Linux
Linux 系统五种帮助命令的使用
Linux 系统五种帮助命令的使用
34 14