帮助命令
man 英语 manual 查看非shell命令,包含解释,十分详细
- man 命令 或配置文件
man man 的结果,截取部分
1 Executable programs or shell commands //可执行程序或shell命令
2 System calls (functions provided by the kernel) //查看可被内核调用的帮助
3 Library calls (functions within program libraries)//查看函数 函数库帮助
4 Special files (usually found in /dev)//查看特殊文件帮助
5 File formats and conventions eg /etc/passwd //查看配置文件的帮助
6 Games// 查看游戏帮助
7 Miscellaneous (including macro packages and conventions), e.g.
man(7), groff(7)//其他选项
8 System administration commands (usually only for root)
9 Kernel routines [Non standard]
man 1 命令 查看指定的命令帮助
man 8 ifconfig
[root@bogon ~]# whatis ls
ls (1) - list directory contents
man -f ls 查看命令有几种帮助文档
相当于 whatis
help 命令
help查看命令选项
ls --help 查看ls的命令选项 相当于man ls ,简要显示
help 查看shell内核命令帮助
help cd
如何判断是否为shell 内核命令 type
[root@localhost conf.d]# type cd
cd is a shell builtin//cd 是一个shell内置命令
[root@localhost conf.d]# type man
man is hashed (/bin/man)//非内置
[root@localhost conf.d]# type systemctl
systemctl is hashed (/bin/systemctl)
whereis
查看帮助文件等级
查看命令的配置文件
[root@bogon etc]# whereis passwd
passwd: /usr/bin/passwd /etc/passwd /usr/share/man/man1/passwd.1.gz
apropos 配置文件 获取配置文件的简短信息
apropos ls 查看命令中含有ls
info 命令 和man差不多
info是将所有命令的帮助信息放在一起