Linux我用 LinuxLinux学习之路

Linux命令帮助文档

2017-02-04  本文已影响102人  闲睡猫

命令类型

linux命令分为两种:

linux内置的指令

对应一个位于文件系统某目录下的可执行程序

通过type指令可区分命令类型

[root@senlong ~]# type cd  # 内部命令
cd is a shell builtin
[root@senlong ~]# type cat # 外部命令
cat is /bin/cat
[root@senlong ~]# which cat # 外部命令路径
/bin/cat
[root@senlong ~]# whereis cat # 外部命令路径
cat: /bin/cat /usr/share/man/man1/cat.1.gz

shell程序搜寻可执行程序文件的路径定义在PATH环境变量中;

[root@senlong ~]# echo $PATH # 输出环境变量

内部命令帮助文档

[root@senlong ~]# help cd
cd: cd [-L|-P] [dir]
    Change the shell working directory.
    
    Change the current directory to DIR.  The default DIR is the value of the
    HOME shell variable.
    ...

外部命令帮助文档

外部命令帮助文档的获取有多种途径,基本上使用man即可满足需求

[root@senlong ~]# man cat

man手册查看方式:

SYNOPSIS段落符号

SYNOPSIS
cat [OPTION]... [FILE]...

文本搜索:

history命令

上一篇下一篇

猜你喜欢

热点阅读