您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關(guān)Linux中的Type命令怎么用,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
type 工具用于顯示
命令的類型信息。它將展示在
命令行上輸入給定的命令將如何解釋。 |
如何使用type命令
type
命令是bash內(nèi)置,type語法:
type [-afptP] [name ...]
例如,查看type
的類型:
[root@localhost ~]# type type type is a shell builtin
也可以提供多個參數(shù):
[root@localhost ~]# type vim sleep head vim is hashed (/usr/bin/vim) sleep is /usr/bin/sleep head is /usr/bin/head
命令的類型
-t
選項告訴type打印一個描述命令類型的單詞,該單詞會是下面其中之一:
alias - 別名
builtin - 內(nèi)置命令
file - 文件
keyword - 關(guān)鍵字
這里有一些例子:
Alias
[root@localhost ~]# type -t ls alias # 在Centos系統(tǒng)中,ls別名對應(yīng)的命令是ls --color=auto[root@localhost bin]# type ls ls is aliased to `ls --color=auto'
Builtin
[root@localhost ~]# type -t printf builtin
printf是shell內(nèi)置的命令
File
[root@localhost ~]# type -t awk file
awk是可執(zhí)行的文件
Keyword
[root@localhost ~]# type -t while keyword
while、for、if、else……等等,是Bash中保留的關(guān)鍵字
顯示命令的位置和類型
使用-a
命令可以顯示命令的位置和類型:
[root@localhost ~]# type -a ls printf awk while ls is aliased to `ls --color=auto' ls is /usr/bin/ls printf is a shell builtin printf is /usr/bin/printf awk is /usr/bin/awk while is a shell keyword
這個實例執(zhí)行后顯示了ls,printf,awk,while
命令的類型和位置。
關(guān)于“Linux中的Type命令怎么用”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。