2016-02-23 01:11:29 +00:00
|
|
|
# sh
|
|
|
|
|
2021-04-14 15:07:21 +01:00
|
|
|
> Bourne shell, the standard command language interpreter.
|
|
|
|
> See also `histexpand` for history expansion.
|
|
|
|
> More information: <https://manned.org/sh>.
|
2016-02-23 01:11:29 +00:00
|
|
|
|
2021-04-14 15:07:21 +01:00
|
|
|
- Start an interactive shell session:
|
2016-02-23 01:11:29 +00:00
|
|
|
|
|
|
|
`sh`
|
|
|
|
|
2021-04-14 15:07:21 +01:00
|
|
|
- Execute a command and then exit:
|
2016-02-23 01:11:29 +00:00
|
|
|
|
2021-04-14 15:07:21 +01:00
|
|
|
`sh -c "{{command}}"`
|
2016-02-23 01:11:29 +00:00
|
|
|
|
2021-04-14 15:07:21 +01:00
|
|
|
- Execute a script:
|
2016-02-23 01:11:29 +00:00
|
|
|
|
2021-04-14 15:07:21 +01:00
|
|
|
`sh {{path/to/script.sh}}`
|
2016-02-23 01:11:29 +00:00
|
|
|
|
2022-12-04 07:53:34 +00:00
|
|
|
- Read and execute commands from `stdin`:
|
2016-02-23 01:11:29 +00:00
|
|
|
|
|
|
|
`sh -s`
|