1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:27:46 +00:00

Base: Add manpages for which(1) and stat(1)

This commit is contained in:
jahway603 2022-10-20 18:45:31 -04:00 committed by Linus Groh
parent d5cf403f70
commit e9ca641d45
2 changed files with 61 additions and 0 deletions

View file

@ -0,0 +1,25 @@
## 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
```