码迷,mamicode.com
首页 > 其他好文 > 详细

命令类型查看type

时间:2016-10-15 22:50:41      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:file   信息   alias   

type:类型


1.命令作用:

    type命令用来显示指定命令的类型,判断给出的命令是内部命令还是外部命令。


2.使用方式:

    type command


3.参数说明:

    -t:输出“file”、“alias”或者“builtin”,分别表示给定的指令为“外部指令”、“命令别名”或者“内部指令”;


    -p:如果给出的指令为外部指令,则显示其绝对路径;


    -a:在环境变量“PATH”指定的路径中,显示给定指令的信息,包括命令别名;


4.范例:

    

[cgy@localhost ~]$ type ls

ls is aliased to `ls --color=auto‘


[cgy@localhost ~]$ type cd

cd is a shell builtin


[cgy@localhost ~]$ type type

type is a shell builtin


[cgy@localhost ~]$ type pwd

pwd is a shell builtin


[cgy@localhost ~]$ type date

date is /bin/date


[cgy@localhost ~]$ type which

which is aliased to `alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde‘

命令类型查看type

标签:file   信息   alias   

原文地址:http://cgy123.blog.51cto.com/11213246/1862217

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!