如何查找特定命令的可用人员章节/部分? [重复]


1

这个问题在这里已有答案:

例如: LS 命令只有第1章 MKDIR 命令有第1章和第1章2.是否有任何命令显示特定命令可用的章节数?

[root@localhost /]# man 1 ls
[root@localhost /]# man 2 ls
No entry for ls in section 2 of the manual
[root@localhost /]# man 3 ls
No entry for ls in section 3 of the manual
[root@localhost /]# man 4 ls
No entry for ls in section 4 of the manual
[root@localhost /]# man 5 ls
No entry for ls in section 5 of the manual
[root@localhost /]# man 6 ls
No entry for ls in section 6 of the manual
[root@localhost /]# man 7 ls
No entry for ls in section 7 of the manual
[root@localhost /]# man 8 ls
No entry for ls in section 8 of the manual

[root@localhost /]# man 1 mkdir
[root@localhost /]# man 2 mkdir
[root@localhost /]# man 3 mkdir
No entry for mkdir in section 3 of the manual
[root@localhost /]# man 4 mkdir
No entry for mkdir in section 4 of the manual
[root@localhost /]# man 5 mkdir
No entry for mkdir in section 5 of the manual
[root@localhost /]# man 6 mkdir
No entry for mkdir in section 6 of the manual
[root@localhost /]# man 7 mkdir
No entry for mkdir in section 7 of the manual
[root@localhost /]# man 8 mkdir
No entry for mkdir in section 8 of the manual

我认为这实际上并不重复。他想要一个章节计数,而不是一个位置
Journeyman Geek

@JourneymanGeek如果你打电话 man -a -w $command 那就是你会得到的,所以这是一个骗局。
slhck

Answers:


0

你用 apropos -e ls - 这是完全匹配,过滤掉了很多僵硬的 恰好的 命令将在联机帮助页标题中搜索字符串。有问题的条目旁边的数字是章节的数量,我相信 - 例如我跑步时 apropos -e mkdir

mkdir (1)            - make directories
mkdir (2)            - create a directory

而输出 apropos -e ls 节目

dircolors (1)        - color setup for ls
ls (1)               - list directory contents

我承认,如果命令名称旁边的括号中的数字是章节号,我就无法解决,但这将是要使用的命令。


谢谢你的肯定回复!我试过了 恰好的 但是-e不起作用。同样用man apropos检查它没有显示任何这样的参数。请您提供更多相关指南。非常感谢。
user3134198

这很奇怪,因为我从手册页中删除了它。根据我之前的编辑,尝试不使用e,并查看输出。
Journeyman Geek
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.