mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
bash: add page
This commit is contained in:
parent
4359692109
commit
01ab02d1ef
1 changed files with 20 additions and 0 deletions
20
pages/common/bash.md
Normal file
20
pages/common/bash.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue