內部命令其實是shell程序的一部分,其中包含的是一些比較簡單的linux系統命令,這些命令由shell程序識別並在shell程序內部完成運行,一般在linux系統加載運行時shell就被加載並駐留在系統內存中。內部命令是寫在bashy源碼裏面的,其執行速度比外部命令快,由於解析內部命令shell不須要建立子進程。好比:exit,history,cd,echo等。linux
外部命令是linux系統中的實用程序部分,由於實用程序的功能一般都比較強大,因此其包含的程序量也會很大,在系統加載時並不隨系統一塊兒被加載到內存中,而是在須要時纔將其調用內存。一般外部命令的實體並不包含在shell中,可是其命令執行過程是由shell程序控制的。shell程序管理外部命令執行的路徑查找、加載存放,並控制命令的執行。外部命令是在bash以外額外安裝的,一般放在/bin,/usr/bin,/sbin,/usr/sbin......等等。可經過「echo $PATH」命令查看外部命令的存儲路徑,好比:ls、vi等。shell
內部命令和外部命令最大的區別之處就是性能。內部命令因爲構建在shell中而沒必要建立多餘的進程,要比外部命令執行快得多。所以和執行更大的腳本道理同樣,執行包含不少外部命令的腳本會損害腳本的性能。bash
1.內部命令在系統啓動時就調入內存,是常駐內存的,因此執行效率高。性能
2.外部命令是系統的軟件功能,用戶須要時才從硬盤中讀入內存。ui
type能夠用來判斷一個命令是否爲內置命令spa
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既能夠查看內部命令,同時也能夠判斷是否爲內部命令code
[root@linuxeye ~]# enable -a #查看內部命令 [root@linuxeye ~]# enable whiptail #非內部命令 -bash: enable: whiptail: not a shell builtin [root@linuxeye ~]# enable pwd #是內部命令
內部命令用戶輸入時系統調用的速率快,不是內置命令,系統將會讀取環境變量文件.bash_profile、/etc/profile去找PATH路徑。blog
而後在提一下命令的調用,有些歷史命令使用事後,會存在在hash表中,當你再次輸入該命令它的調用會是這樣一個過程。進程
hash——>內置命令——>PATH 命令的調用其實應該是這樣一個過程。ip
[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表不存放系統內置命令。