mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 06:26:00 +02:00

Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com> Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
20 lines
228 B
Markdown
20 lines
228 B
Markdown
# sh
|
|
|
|
> Bourne shell.
|
|
> The standard command language interpreter.
|
|
|
|
- Start interactive shell:
|
|
|
|
`sh`
|
|
|
|
- Execute a command:
|
|
|
|
`sh -c {{command}}`
|
|
|
|
- Run commands from a file:
|
|
|
|
`sh {{file.sh}}`
|
|
|
|
- Run commands from stdin:
|
|
|
|
`sh -s`
|