which (command)

From Wikipedia, the free encyclopedia
(Redirected from Which (Unix))
which
Developer(s)Carlo Wood, Daniel Papasian, Trane Francks
Stable release
2.21[1] Edit this on Wikidata / 20 March 2015; 9 years ago (20 March 2015)
Operating systemUnix, Unix-like, Microsoft Windows, FreeBSD, FreeDOS, AROS Research Operating System[2]
TypeCommand
Licensecoreutils: GNU GPL v3, BusyBox: BSD, FreeDOS: GNU GPLv2, AROS: AROS Public License (APL) Version 1.1 (based on the MPL)[3]
WebsiteGNU: gnu.org/software/which/, FreeDOS:Trane's World: Reinvented, AROS: aros.sourceforge.net

In computing, which is a command for various operating systems used to identify the location of executables. The command is available in Unix and Unix-like systems, the AROS shell,[4] for FreeDOS[5] and for Microsoft Windows.[2] The functionality of the which command is similar to some implementations of the type command. POSIX specifies a command named command that also covers this functionality.[6]

Implementations[edit]

Unix, Unix-like, Multics[edit]

The command takes one or more arguments; for each of these arguments, it prints the full path of the executable to stdout that would have been executed if this argument had been entered into the shell. It does this by searching for an executable or script in the directories listed in the environment variable PATH.[7] The which command is part of most Unix-like computers. It is also part of the C Shell.[6]

A which command first appeared in 3BSD.[8]

Carlo Wood developed the GNU implementation used in most Linux-based operating systems.[9]

On FreeBSD, the which utility was originally written in Perl by Wolfram Schneider. The current version of which was rewritten by Daniel Papasian using the C programming language.[10]

Multics uses the command where abbreviated as wh.

Microsoft Windows, MS-DOS, FreeDOS[edit]

The command is available as a separate package for Microsoft Windows as part of the GnuWin32 project[2] and the UnxUtils collection of native Win32 ports of common GNU Unix-like utilities.[11] Windows also includes the similar where.exe command.

The same functionality is available in MS-DOS, but not Windows, as the built-in TRUENAME command.

In PowerShell, the functionality is provided by the Get-Command Cmdlet.[12]

The FreeDOS version was developed by Trane Francks.[13]

AmigaOS compatible[edit]

The command is used to find and print the location of a specific program.[14]

Inputs:

  • FILE – Specifies the command to search for
  • NORES – Resident programs are not included in the search
  • RES – Only resident programs are considered
  • ALL – Will find all locations of the FILE, which may cause the printing of the same location several times

References[edit]

  1. ^ "which".
  2. ^ a b c which for Windows from the GnuWin32 project
  3. ^ "AROS Public License version 1.1".
  4. ^ "AROS Research Operating System".
  5. ^ "FreeDOS 1.2 Updates Group - Utilities". Ibiblio.org. Retrieved 2022-09-08.
  6. ^ a b "Command", The Open group base specification, Issue 7, IEEE std 1003.1-2008
  7. ^ which man page
  8. ^ which(1) – OpenBSD General Commands Manual
  9. ^ which(1) – Linux User Commands Manual
  10. ^ which(1) – FreeBSD General Commands Manual
  11. ^ "Native Win32 ports of some GNU utilities". Unxutils.sourceforge.net. Retrieved 2022-09-08.
  12. ^ "Get-Command (Microsoft.PowerShell.Core) - PowerShell".
  13. ^ "FreeDOS 1.2 Updates Package - which (Unix-like)". Ibiblio.org. 2002-03-20. Retrieved 2022-09-08.
  14. ^ "AROS Research Operating System".

External links[edit]