tldr/pages/common/sh.md

21 lines
228 B
Markdown
Raw Normal View History

2016-02-23 01:11:29 +00:00
# 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:
2016-02-23 01:11:29 +00:00
`sh -s`