mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
21 lines
228 B
Markdown
21 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`
|