本篇內(nèi)容介紹了“有哪些Linux系統(tǒng)命令”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
成都創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),賓陽企業(yè)網(wǎng)站建設(shè),賓陽品牌網(wǎng)站建設(shè),網(wǎng)站定制,賓陽網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,賓陽網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。
Linux的命令分為內(nèi)部命令和外部命令:
內(nèi)部命令在系統(tǒng)啟動(dòng)時(shí)就調(diào)入內(nèi)存,是常駐內(nèi)存的,所以執(zhí)行效率高。
外部命令是系統(tǒng)的軟件功能,用戶需要時(shí)才從硬盤中讀入內(nèi)存。
type可以用來判斷一個(gè)命令是否為內(nèi)置命令
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既可以查看內(nèi)部命令,同時(shí)也可以判斷是否為內(nèi)部命令
[root@linuxeye ~]# enable -a #查看內(nèi)部命令
[root@linuxeye ~]# enable whiptail #非內(nèi)部命令
-bash: enable: whiptail: not a shell builtin
[root@linuxeye ~]# enable pwd #是內(nèi)部命令
內(nèi)部命令用戶輸入時(shí)系統(tǒng)調(diào)用的速率快,不是內(nèi)置命令,系統(tǒng)將會(huì)讀取環(huán)境變量文件.bash_profile、/etc/profile去找PATH路徑。
然后在提一下命令的調(diào)用,有些歷史命令使用過后,會(huì)存在在hash表中,當(dāng)你再次輸入該命令它的調(diào)用會(huì)是這樣一個(gè)過程。
hash——》內(nèi)置命令——》PATH 命令的調(diào)用其實(shí)應(yīng)該是這樣一個(gè)過程。
[root@linuxeye ~]# type pwd
pwd is a shell builtin
[root@linuxeye ~]# type cat
cat is /usr/bin/cat
[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表不存放系統(tǒng)內(nèi)置命令。
“有哪些Linux系統(tǒng)命令”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!