1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-09 23:13:49 +02:00

Merge pull request #587 from Ethiraric/bash-page

This commit is contained in:
Igor Shubovych 2016-01-05 09:59:45 +02:00
commit 1492161348

20
pages/common/bash.md Normal file
View file

@ -0,0 +1,20 @@
# 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}}`