mirror of https://github.com/CrimsonTome/tldr.git
30 lines
561 B
Markdown
30 lines
561 B
Markdown
# bash
|
|
|
|
> Bourne-Again SHell.
|
|
> Interprete da linea di comando compatibile con `sh`.
|
|
> Maggiori informazioni: <https://gnu.org/software/bash/>.
|
|
|
|
- Avvia una shell interattiva:
|
|
|
|
`bash`
|
|
|
|
- Esegui un comando:
|
|
|
|
`bash -c "{{comando}}"`
|
|
|
|
- Esegui dei comandi da un file:
|
|
|
|
`bash {{file.sh}}`
|
|
|
|
- Esegui dei comandi da un file, loggando tutti i comandi eseguiti nel terminale:
|
|
|
|
`bash -x {{file.sh}}`
|
|
|
|
- Esegui comandi da standard input:
|
|
|
|
`bash -s`
|
|
|
|
- Stampa informazioni sulla versione di bash (usa `echo $BASH_VERSION` per mostrare solo la versione):
|
|
|
|
`bash --version`
|