This file documents `which' version 2.x. Copyright © 2000, by Carlo Wood, Run on IRC <carlo@alinoe.com> RSA-1024 0x624ACAD5 1997-01-26 Sign & Encrypt Fingerprint16 = 32 EC A7 B6 AC DB 65 A6 F6 F6 55 DD 1C DC FF 61 Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies.
which
: Show the full path of commandsThe which
program
shows the full path of (shell) commands.
This file documents which
version 2.11, updated 19 April 2000.
which
Program
which
which
which
ProgramWhich
takes one or more arguments. For each of its arguments
it prints to stdout the full path of the executables
that would have been executed when this argument had been
entered at the shell prompt. It does this by searching
for an executable or script in the directories listed in
the environment variable PATH
using the same algorithm as bash(1)
.
which
The synopsis to invoke which
is
which [options] [--] programname [...]
--all
-a
PATH
, not just the first.
--read-alias
-i
alias which='alias | which -i'
.
--skip-alias
--read-alias
, if any. This is useful to
explicity search for normal binaries, while using the
--read-alias
option in an alias for which.
--skip-dot
PATH
that start with a dot.
--skip-tilde
PATH
that start with a tilde and
executables which reside in the HOME
directory.
--show-dot
PATH
starts with a dot and a matching
executable was found for that path, then print
"./programname" rather than the full path.
--show-tilde
HOME
directory. This option is ignored when which is
invoked as root.
--tty-only
--version, -v, -V
--help
Which
returns the number of failed arguments, or -1 when
no programname
was given.
A useful way to use this utility is by adding an alias for
which
like the following:
alias which='which --tty-only --show-tilde --show-dot'
This will print the readable ~/ and ./ when starting which from your prompt, while still printing the full path when used from a script:
> which q2 ~/bin/q2 > echo `which q2` /home/carlo/bin/q2
Aliases are also supported, through the use of an alias for which itself. An example alias for which that is using this feature is as follows:
alias which='alias | which --tty-only --read-alias --show-tilde --show-dot'
This will print the output of alias for each alias that matches one of the given arguments. For example, using this alias on itself in a tcsh:
$ alias which alias \| /usr/bin/which -i !\* $ which which which (alias | ./which -i !*) /usr/bin/which
The HOME
directory is determined by looking for the HOME
environment variable, which aborts when this variable
doesn't exist. Which
will consider two equivalent directories
to be different when one of them contains a path
with a symbolic link.
bash(1)
--all
: Option Summary
--help
: Option Summary
--read-alias
: Option Summary
--show-dot
: Option Summary
--show-tilde
: Option Summary
--skip-alias
: Option Summary
--skip-dot
: Option Summary
--skip-tilde
: Option Summary
--tty-only
: Option Summary
--version
: Option Summary
-a
: Option Summary
-i
: Option Summary
-V
: Option Summary
-v
: Option Summary
which
: Which Program
which
: Invoking Which
which
: Return Value