mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 06:04:59 +00:00
25 lines
326 B
Markdown
25 lines
326 B
Markdown
## Name
|
|
|
|
which - show the full path of commands
|
|
|
|
## Synopsis
|
|
|
|
```**sh**
|
|
$ which [options] executable
|
|
```
|
|
|
|
## Description
|
|
|
|
`which` provides the full path location of where an executable is installed.
|
|
|
|
## Options
|
|
|
|
* `--help`: Display help message and exit
|
|
* `--version`: Print version
|
|
|
|
## Examples
|
|
|
|
```sh
|
|
$ which ls
|
|
/bin/ls
|
|
```
|