2024年11月Linux系统命令解析

发布时间:

  ⑴对于Linux系统,用户们一定对它那功能强大的命令印象深刻,不过有许多Linux用户对Linux系统中的各项命令并不太熟悉,下面就和小编一起来看看Linux系统的命令吧。

  ⑵Linux的命令分为内部命令和外部命令:

  ⑶内部命令在系统启动时就调入内存,是常驻内存的,所以执行效率高。

  ⑷外部命令是系统的软件功能,用户需要时才从硬盘中读入内存。

  ⑸type可以用来判断一个命令是否为内置命令

  ⑹type: usage: type [-afptP] name [name 。。。]

  ⑺[rootlinuxeye ~]# type type

  ⑻type is a shell builtin

  ⑼[rootlinuxeye ~]# type -p type

  ⑽[rootlinuxeye ~]# type -t type

  ⑾[rootlinuxeye ~]# type type

  ⑿type is a shell builtin

  ⒀[rootlinuxeye ~]# type -t type

  ⒁[rootlinuxeye ~]# type pwd

  ⒂pwd is a shell builtin

  ⒃[rootlinuxeye ~]# type whiptail

  ⒄whiptail is /usr/bin/whiptail

  ⒅[rootlinuxeye ~]# type -t whiptail

  ⒆enable既可以查看内部命令,同时也可以判断是否为内部命令

  ⒇[rootlinuxeye ~]# enable -a #查看内部命令

  ⒈[rootlinuxeye ~]# enable whiptail #非内部命令

  ⒉-bash: enable: whiptail: not a shell builtin

  ⒊[rootlinuxeye ~]# enable pwd #是内部命令

  ⒋内部命令用户输入时系统调用的速率快,不是内置命令,系统将会读取环境变量文件.bash_profile、/etc/profile去找PATH路径。

  ⒌然后在提一下命令的调用,有些历史命令使用过后,会存在在hash表中,当你再次输入该命令它的调用会是这样一个过程。

  ⒍hash——》内置命令——》PATH 命令的调用其实应该是这样一个过程。

  ⒎[rootlinuxeye ~]# type pwd

  ⒏pwd is a shell builtin

  ⒐[rootlinuxeye ~]# type cat

  ⒑cat is /usr/bin/cat

  ⒒[rootlinuxeye ~]# ls linuxeye*

  ⒓linuxeye.pem linuxeye.txt

  ⒔[rootlinuxeye ~]# cat linuxeye.txt

  ⒕linuxeye

  ⒖[rootlinuxeye ~]# hash -l #显示hash表

  ⒗builtin hash -p /usr/bin/cat cat

  ⒘builtin hash -p /usr/bin/ls ls

  ⒙[rootlinuxeye ~]# type cat

  ⒚cat is hashed (/usr/bin/cat

  ⒛[rootlinuxeye ~]# hash -r #清除hash表

  ①[rootlinuxeye ~]# type cat

  ②cat is /usr/bin/cat

  ③从上面操作可以看出。hash表不存放系统内置命令。

  ④这就是Linux系统中的内部命令和外部命令了,对Linux命令不熟悉,或者感兴趣的用户快来看看吧。