Files
cheatsheet-tldr/tldr/which

18 lines
397 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# which
> Locate a program in the user's path.
> More information: <https://manned.org/which>.
- Search the PATH environment variable and display the location of any matching executables:
`which {{executable}}`
- If there are multiple executables which match, display all:
`which -a {{executable}}`