赞
踩
type:内建命令,查看命令的类型。
语法:
type [ 选项 ] [ 参数 ]
选项:
-t:显示是file、alias或者builtin,分别表示是外部命令、命名别名或者内建命令
-p:如果命令是外部命令,则显示绝对路径
-a:显示命令的类型
示例:
ypf@ubuntu:~$ type ls
ls is aliased to `ls --color=auto'
ypf@ubuntu:~$ type -t ls
alias
ypf@ubuntu:~$ type cd
cd is a shell builtin
ypf@ubuntu:~$ type -t cd
builtin
ypf@ubuntu:~$ type -a ls
ls is aliased to `ls --color=auto'
ls is /bin/ls
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。