You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.5 KiB

7 years ago
type
===
显示指定命令的类型
## 补充说明
**type命令** 用来显示指定命令的类型,判断给出的指令是内部指令还是外部指令。
命令类型:
* alias别名。
* keyword关键字Shell保留字。
* function函数Shell函数。
* builtin内建命令Shell内建命令。
* file文件磁盘文件外部命令。
* unfound没有找到。
### 语法
```
type(选项)(参数)
```
### 选项
```
-t输出“file”、“alias”或者“builtin”分别表示给定的指令为“外部指令”、“命令别名”或者“内部指令”
-p如果给出的指令为外部指令则显示其绝对路径
-a在环境变量“PATH”指定的路径中显示给定指令的信息包括命令别名。
```
### 参数
指令:要显示类型的指令。
### 实例
```
[root@localhost ~]# type ls
ls is aliased to `ls --color=tty'
[root@localhost ~]# type cd
cd is a shell builtin
[root@localhost ~]# type date
date is /bin/date
[root@localhost ~]# type mysql
mysql is /usr/bin/mysql
[root@localhost ~]# type nginx
-bash: type: nginx: 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
[root@localhost ~]# type -a grep
grep is /bin/grep
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->