接下来要用到的例子假设'~/.bashrc'文件定义了以下的内容:
alias ls='ls --color=auto'
mybash(){ vim ~/.bashrc; }
而且执行环境里没有使用enable禁用内建命令。
type -a mybash
# 输出
mybash is a function
mybash ()
{
vim ~/.bashrc
}
type -a -f mybash
# 输出(因为排除了函数,所以报错)
bash: type: mybash: not found
type -a -p mybash
# 输出为空(因为排除了函数,所以什么也不返回)
type -a ls
# 输出
ls is aliased to `ls --color=suto'
ls is /usr/bin/ls
ls is /bin/ls
type -a -p ls
# 输出
/usr/bin/ls
/bin/ls
# '-f'不会影响'-P'的范围,'-f'不建议和'-p'使用。
# 注意:printf同时是内建命令以及可执行文件(GNU coreutils),优先作为内建处理。
type -p printf
# 输出为空
type -P printf
# 输出
/usr/bin/printf
/bin/printf
# 如果有多个类型,那么输出优先级最高的类型。
type -t ls
# 输出
alias
type -t for
# 输出(bash关键字)
keyword
type -t mybash
# 输出
function
type -t -f mybash
# 输出空值
type -t printf
# 输出(bash内建优先级高)
builtin
type -t chmod
# 输出
file