文章目录
which
命令功能
通过帮助文档了解命令的含义
NAME
which - shows the full path of (shell) commands.
从字面意思可以看出来,which命令的功能是查找(shell解释器中)指令的全路径,可以快速搜索到二进制程序所在的文件位置;如果是专门用来找指令的路径,那这个which就真的特别的合适。
与which相关命令
语法格式
该命令的语法格式是:which 【参数】 程序名(指令)
SYNOPSIS
which [options] [--] programname [...]
基本参数
which的参数是比较少,一般用法都是直接使用which 命令的方式来查找的。
-a | 打印可执行文件的路径,不止一个 |
-v | 显示版本信息 |
--help | 显示命令帮助信息 |
下面来看下命令如何来使用的。
参考实例
1)查找chmod命令的文件位置
[root@localhost ~]# which chmod
/usr/bin/chmod
2)查找chmod命令的所有路径
[root@localhost ~]# which -a chmod
/usr/bin/chmod
/bin/chmod
3)一次性查找多个命令路径
[root@localhost ~]# which ls cd date
alias ls='ls --color=auto'
/usr/bin/ls
/usr/bin/cd
/usr/bin/date
4)组合其他命令一起使用
[root@localhost ~]# which chmod
/usr/bin/chmod
[root@localhost ~]# ll /usr/bin/chmod
-rwxr-xr-x 1 root root 58584 Nov 17 2020 /usr/bin/chmod
[root@localhost ~]# file !$
file /usr/bin/chmod
/usr/bin/chmod: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.32, BuildID[sha1]=5e3f4694eb8a6ea0171b8138af507b683e5e44b1, stripped
5)显示命令的版本信息
[root@localhost ~]# which -v
GNU which v2.20, Copyright (C) 1999 - 2008 Carlo Wood.
GNU which comes with ABSOLUTELY NO WARRANTY;
This program is free software; your freedom to use, change
and distribute this program is protected by the GPL.
命令总结
这个命令的参数并不会很多,一般的用法是可以直接用which+指令的,学习起来较为容易,若觉得以上内容还行的,可以点赞支持一下!