命令简介
type命令用来显示指定命令的类型,判断给出的指令是内部指令还是外部指令。
命令语法
type(选项)(参数)
命令类型
alias:别名。
keyword:关键字,Shell保留字。
function:函数,Shell函数。
builtin:内建命令,Shell内建命令。
file:文件,磁盘文件,外部命令。
unfound:没有找到。
命令实例
[root@localhost ~]# type ls
ls is aliased to `ls --color=auto'
[root@localhost ~]# type cd
cd is a shell builtin
[root@localhost ~]# type date
date is /usr/bin/date
[root@localhost ~]# type mysql
-bash: type: mysql: not found
[root@localhost ~]# type if
if is a shell keyword
[root@localhost ~]# type which
which is aliased to `alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'
[root@localhost ~]# type -a cd
cd is a shell builtin
cd is /usr/bin/cd