1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 00:02:07 +02:00
tldr/pages/common/bash.md
2017-09-21 08:35:20 +01:00

28 lines
463 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 a file, logging all commands executed to the terminal:
`bash -x {{file.sh}}`
- Run commands from STDIN:
`bash -s`
- Print the version information of bash (use `echo $BASH_VERSION` to show just the version string):
`bash --version`