Current File : //usr/share/info/which.info
This is which.info, produced by makeinfo version 4.3 from which.texinfo.


This file documents `which' version 2.x.

Copyright (C) 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.


File: which.info,  Node: Top,  Next: Which Program,  Prev: (dir),  Up: (dir)

`which': Show the full path of commands
***************************************

   The `which' program shows the full path of (shell) commands.

This file documents `which' version 2.16, updated 17 August 2001.

* Menu:

* Which Program::               The `which' Program
* Invoking Which::              How to invoke `which'
* Option Summary::              Overview of commandline options
* Return Value::		The return value of `which'
* Example::			Examples of invokation
* Bugs::			Known bugs
* See Also::			Related UNIX commands
* Index::                       Index


File: which.info,  Node: Which Program,  Next: Invoking Which,  Prev: Top,  Up: Top

The `which' Program
*******************

   `Which' 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)'.


File: which.info,  Node: Invoking Which,  Next: Option Summary,  Prev: Which Program,  Up: Top

Invoking `which'
****************

The synopsis to invoke `which' is

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

* Menu:

* Option Summary::        Option summary


File: which.info,  Node: Option Summary,  Next: Return Value,  Prev: Invoking Which,  Up: Top

Option Summary
**************

`--all'
`-a'
     Print all matching executables in `PATH', not just the first.

`--read-alias'
`-i'
     Read aliases from stdin, reporting matching ones on stdout. This
     is useful in combination with using an alias for which itself. For
     example
     `alias which='alias | which -i''.

`--skip-alias'
     Ignore option `--read-alias', if any. This is useful to explicity
     search for normal binaries, while using the `--read-alias' option
     in an alias or function for which.

`--read-functions'
     Read shell function definitions from stdin, reporting matching
     ones on stdout. This is useful in combination with using a shell
     function 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 to
     explicity search for normal binaries, while using the
     `--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 and executables
     which reside in the `HOME' directory.

`--show-dot'
     If a directory in `PATH' starts with a dot and a matching
     executable was found for that path, then print "./programname"
     rather than the full path.

`--show-tilde'
     Output a tilde when a directory matches the `HOME' directory. This
     option is ignored when which is invoked as root.

`--tty-only'
     Stop processing options on the right if not on tty.

`--version, -v, -V'
     Print version information on standard output then exit
     successfully.

`--help'
     Print usage information on standard output then exit successfully.


File: which.info,  Node: Return Value,  Next: Example,  Prev: Option Summary,  Up: Top

Return Value
************

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


File: which.info,  Node: Example,  Next: Bugs,  Prev: Return Value,  Up: Top

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 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


File: which.info,  Node: Bugs,  Next: See Also,  Prev: Example,  Up: Top

Bugs
****

   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.


File: which.info,  Node: See Also,  Next: Index,  Prev: Bugs,  Up: Top

See Also
********

   `bash(1)'


File: which.info,  Node: Index,  Prev: See Also,  Up: Top

Index
*****

* Menu:

* --all:                                 Option Summary.
* --help:                                Option Summary.
* --read-alias:                          Option Summary.
* --read-functions:                      Option Summary.
* --show-dot:                            Option Summary.
* --show-tilde:                          Option Summary.
* --skip-alias:                          Option Summary.
* --skip-dot:                            Option Summary.
* --skip-functions:                      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.
* aliases, handling of:                  Example.
* Bugs, known:                           Bugs.
* Command line Options:                  Option Summary.
* Description of which:                  Which Program.
* Examples:                              Example.
* Invoking which:                        Invoking Which.
* Options, command line:                 Option Summary.
* Overview of command line options:      Option Summary.
* Return value of which:                 Return Value.
* Synopsis:                              Invoking Which.



Tag Table:
Node: Top477
Node: Which Program1130
Node: Invoking Which1619
Node: Option Summary1883
Node: Return Value3770
Node: Example3978
Node: Bugs4709
Node: See Also5050
Node: Index5157

End Tag Table