mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 19:45:09 +02:00
20 lines
243 B
Markdown
20 lines
243 B
Markdown
# bash
|
|
|
|
> Bourne-Again SHell.
|
|
> `sh`-compatible command line interpreter.
|
|
|
|
- Start interactive shell:
|
|
|
|
`bash`
|
|
|
|
- Execute a command:
|
|
|
|
`bash -c {{command}}`
|
|
|
|
- Run commands from a file:
|
|
|
|
`bash {{file.sh}}`
|
|
|
|
- Run commands from STDIN:
|
|
|
|
`bash -s`
|