Base: Add man page for env
This commit is contained in:
parent
6aa87e2119
commit
3de4cd0ba9
Notes:
sideshowbarker
2024-07-17 03:03:37 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/3de4cd0ba9 Pull-request: https://github.com/SerenityOS/serenity/pull/19630
1 changed files with 19 additions and 0 deletions
19
Base/usr/share/man/man1/env.md
Normal file
19
Base/usr/share/man/man1/env.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
## Name
|
||||
|
||||
env - Execute a command with a modified environment
|
||||
|
||||
## Synopsis
|
||||
|
||||
```sh
|
||||
$ env [--ignore-environment] [--split-string S] [--unset name] [env/command...]
|
||||
```
|
||||
|
||||
## Options
|
||||
|
||||
* `-i`, `--ignore-environment`: Start with an empty environment
|
||||
* `-S S`, `--split-string S`: Process and split S into separate arguments; used to pass multiple arguments on shebang lines
|
||||
* `-u name`, `--unset name`: Remove variable from the environment
|
||||
|
||||
## Arguments
|
||||
|
||||
* `env/command`: Environment and commands
|
Loading…
Add table
Reference in a new issue