共计 1159 个字符,预计需要花费 3 分钟才能阅读完成。
自动写代码机器人,免费开通
这篇文章将为大家详细讲解有关 Linux 中的 Type 命令怎么用,丸趣 TV 小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
type 工具用于显示
命令的类型信息。它将展示在
命令行上输入给定的命令将如何解释。
如何使用 type 命令
type 命令是 bash 内置,type 语法:
type [-afptP] [name ...]
例如,查看 type 的类型:
[root@localhost ~]# type type
type is a shell builtin
也可以提供多个参数:
[root@localhost ~]# type vim sleep head
vim is hashed (/usr/bin/vim)
sleep is /usr/bin/sleep
head is /usr/bin/head
命令的类型
- t 选项告诉 type 打印一个描述命令类型的单词,该单词会是下面其中之一:
alias – 别名
builtin – 内置命令
file – 文件
keyword – 关键字
这里有一些例子:
Alias
[root@localhost ~]# type -t ls
alias
# 在 Centos 系统中,ls 别名对应的命令是 ls --color=auto[root@localhost bin]# type ls
ls is aliased to `ls --color=auto
Builtin
[root@localhost ~]# type -t printf
builtin
printf 是 shell 内置的命令
File
[root@localhost ~]# type -t awk
file
awk 是可执行的文件
Keyword
[root@localhost ~]# type -t while
keyword
while、for、if、else……等等,是 Bash 中保留的关键字
显示命令的位置和类型
使用 - a 命令可以显示命令的位置和类型:
[root@localhost ~]# type -a ls printf awk while
ls is aliased to `ls --color=auto
ls is /usr/bin/ls
printf is a shell builtin
printf is /usr/bin/printf
awk is /usr/bin/awk
while is a shell keyword
这个实例执行后显示了 ls,printf,awk,while 命令的类型和位置。
关于“Linux 中的 Type 命令怎么用”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。
向 AI 问一下细节
丸趣 TV 网 – 提供最优质的资源集合!
正文完