您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“linux系統中如何使用type命令”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“linux系統中如何使用type命令”這篇文章吧。
type命令 用來顯示指定命令的類型,判斷給出的指令是內部指令還是外部指令。
type
命令是bash內置,type語法:
type [-afptP] [name ...]
例如,查看type
的類型:
[root@localhost ~]# type typetype is a shell builtin
也可以提供多個參數:
[root@localhost ~]# type vim sleep headvim is hashed (/usr/bin/vim) sleep is /usr/bin/sleep head is /usr/bin/head
-t
選項告訴type打印一個描述命令類型的單詞,該單詞會是下面其中之一:
這里有一些例子:
[root@localhost ~]# type -t lsalias# 在Centos系統中,ls別名對應的命令是ls --color=auto[root@localhost bin]# type lsls is aliased to `ls --color=auto'
[root@localhost ~]# type -t printfbuiltin
printf是shell內置的命令
[root@localhost ~]# type -t awkfile
awk是可執行的文件
[root@localhost ~]# type -t whilekeyword
while、for、if、else……等等,是Bash中保留的關鍵字
使用-a
命令可以顯示命令的位置和類型:
[root@localhost ~]# type -a ls printf awk whilels 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
這個實例執行后顯示了ls,printf,awk,while
命令的類型和位置。
以上是“linux系統中如何使用type命令”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。