mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 08:22:09 +02:00
20 lines
328 B
Markdown
20 lines
328 B
Markdown
# bash
|
|
|
|
> Bourne-Again SHell.
|
|
> `sh`-compatible command line interpreter.
|
|
|
|
- Start interactive command line interpreter:
|
|
|
|
`bash`
|
|
|
|
- Execute command passed as parameter:
|
|
|
|
`bash -c {{command}}`
|
|
|
|
- Run commands from file (script):
|
|
|
|
`bash {{file}}`
|
|
|
|
- Run commands from file and print them as they are executed:
|
|
|
|
`bash -x {{file}}`
|