linux type命令

linux系統type命令怎麼用?讓我們一起來了解下。

基本介紹:type命令用來顯示指定命令的型別,判斷給出的指令是內部指令還是外部指令。

入門測試:

顯示命令所有型別:

[root@linux ~]# type ls

ls is aliased to `ls --color=auto'

[root@linux ~]# type -a ls

ls is aliased to `ls --color=auto'

ls is /usr/bin/ls

程式碼說明及拓展:

lias 別名 

keyword 關鍵字,Shell保留字 

function 函式,Shell函式 

builtin 內建命令,Shell內建命令 

file 檔案,磁碟檔案,外部命令 

unfound 沒有找到 

今天的分享就是這些,希望能幫助大家。