Например: у команды ls есть только глава 1. в то время как у команды mkdir есть главы 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