国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Linux > 正文

Linux中的內置命令和外部命令詳解

2020-06-13 11:19:19
字體:
來源:轉載
供稿:網友

Linux的命令分為內部命令和外部命令:

1.內部命令在系統啟動時就調入內存,是常駐內存的,所以執行效率高。
2.外部命令是系統的軟件功能,用戶需要時才從硬盤中讀入內存。

type可以用來判斷一個命令是否為內置命令
 

復制代碼
代碼如下:

type: usage: type [-afptP] name [name ...]


復制代碼
代碼如下:

[root@linuxeye ~]# type type
type is a shell builtin
[root@linuxeye ~]# type -p type
[root@linuxeye ~]# type -t type
builtin
[root@linuxeye ~]# type type
type is a shell builtin
[root@linuxeye ~]# type -t type
builtin
[root@linuxeye ~]# type pwd
pwd is a shell builtin
[root@linuxeye ~]# type whiptail
whiptail is /usr/bin/whiptail
[root@linuxeye ~]# type -t whiptail
file

 

enable既可以查看內部命令,同時也可以判斷是否為內部命令
 

復制代碼
代碼如下:

[root@linuxeye ~]# enable -a #查看內部命令
[root@linuxeye ~]# enable whiptail #非內部命令
-bash: enable: whiptail: not a shell builtin
[root@linuxeye ~]# enable pwd #是內部命令

 

內部命令用戶輸入時系統調用的速率快,不是內置命令,系統將會讀取環境變量文件.bash_profile、/etc/profile去找PATH路徑。

然后在提一下命令的調用,有些歷史命令使用過后,會存在在hash表中,當你再次輸入該命令它的調用會是這樣一個過程。

hash——>內置命令——>PATH   命令的調用其實應該是這樣一個過程。
 

復制代碼
代碼如下:

[root@linuxeye ~]# type pwd
pwd is a shell builtin
[root@linuxeye ~]# type cat
cat is /usr/bin/cat
[root@linuxeye ~]# pwd
/root
[root@linuxeye ~]# ls linuxeye*
linuxeye.pem linuxeye.txt
[root@linuxeye ~]# cat linuxeye.txt
linuxeye
[root@linuxeye ~]# hash -l #顯示hash表
builtin hash -p /usr/bin/cat cat
builtin hash -p /usr/bin/ls ls
[root@linuxeye ~]# type cat
cat is hashed (/usr/bin/cat)
[root@linuxeye ~]# hash -r #清除hash表
[root@linuxeye ~]# type cat
cat is /usr/bin/cat

 

從上面操作可以看出。hash表不存放系統內置命令。


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 冷水江市| 铁岭县| 凤山市| 桂平市| 广丰县| 增城市| 鄢陵县| 丰台区| 汉源县| 禄劝| 武安市| 洪泽县| 呼和浩特市| 铜鼓县| 仁化县| 裕民县| 巫溪县| 沅陵县| 湖口县| 平乡县| 鄂州市| 西城区| 克山县| 美姑县| 耿马| 布尔津县| 甘孜县| 南阳市| 大丰市| 隆尧县| 西贡区| 当雄县| 光山县| 海林市| 绥阳县| 青阳县| 元朗区| 周至县| 哈巴河县| 柏乡县| 禄丰县|