Command在自別名的命令上呼叫
在自別名的命令上呼叫 type
有時一個命令是它自己的別名。例如:
$ type ls ls is aliased to `ls -al'
如何呼叫
type
命令ls
本身(而不是別名)?
根據
type
in的描述man bash
:-P 選項強制對每個名稱進行 PATH 搜尋,即使
type -t name
不會返回文件。如果命令被散列,-p 和 -P 列印散列值,不一定是 PATH 中最先出現的文件所以
$ type ls ls is aliased to `ls -FG' $ type -P ls /bin/ls
還
$ type -a ls ls is aliased to `ls -FG' ls is /bin/ls
有時可能會有所幫助。