打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
which - shows the full path of (shell) commands

NAME

which - shows the full path of (shell) commands. 

SYNOPSIS

which[options] [--] programname [...] 

DESCRIPTION

Which takes one or more arguments. For each of its argumentsit prints to stdout the full path of the executablesthat would have been executed when this argument had beenentered at the shell prompt. It does this by searchingfor an executable or script in the directories listed inthe environment variable PATH using the same algorithm as bash(1).

This man page is generated from the file which.texinfo. 

OPTIONS

--all, -a
Print all matching executables in PATH, not just the first.
--read-alias, -i
Read aliases from stdin, reporting matching ones onstdout. This is useful in combination with using analias for which itself. For example
alias which='alias | which -i'.
--skip-alias
Ignore option `--read-alias', if any. This is useful toexplicity search for normal binaries, while usingthe `--read-alias' option in an alias or function for which.
--read-functions
Read shell function definitions from stdin, reporting matchingones on stdout. This is useful in combination with using a shellfunction for which itself. For example:
which() { declare -f | which --read-functions $@ }
export -f which
--skip-functions
Ignore option `--read-functions', if any. This is useful toexplicity search for normal binaries, while usingthe `--read-functions' option in an alias or function for which.
--skip-dot
Skip directories in PATH that start with a dot.
--skip-tilde
Skip directories in PATH that start with a tilde andexecutables which reside in the HOME directory.
--show-dot
If a directory in PATH starts with a dot and a matchingexecutable was found for that path, then print"./programname" rather than the full path.
--show-tilde
Output a tilde when a directory matches the HOMEdirectory. This option is ignored when which isinvoked as root.
--tty-only
Stop processing options on the right if not on tty.
--version,-v,-V
Print version information on standard output then exitsuccessfully.
--help
Print usage information on standard output then exitsuccessfully.
 

RETURN VALUE

Which returns the number of failed arguments, or -1 whenno `programname' was given. 

EXAMPLE

The recommended way to use this utility is by adding an alias (C shell)or shell function (Bourne shell) for which like the following:

[ba]sh:

which ()
{
(alias; declare -f) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot $@
}
export -f which

[t]csh:

alias which 'alias | /usr/bin/which --tty-only --read-alias --show-dot --show-tilde'

This will print the readable ~/ and ./ when starting whichfrom your prompt, while still printing the full path whenused from a script:

> which q2
~/bin/q2
> echo `which q2`
/home/carlo/bin/q2

 

BUGS

The HOME directory is determined by looking for the HOMEenvironment variable, which aborts when this variabledoesn't exist. Which will consider two equivalent directoriesto be different when one of them contains a pathwith a symbolic link. 

AUTHOR


Carlo Wood <carlo@gnu.org> 

SEE ALSO

bash(1)
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
Cmder简单使用小结
Linux命令(14)which命令
理解 Linux 下 Shell 命令的不同分类及它们的用法
[BASH] 打造自己的 shell 環境 (1) - File & Alias
Linux/UNIX For DOS Users
Linux变量
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服