2019-01-24 20:35:08 +00:00
|
|
|
# bash
|
|
|
|
|
|
|
|
> Bourne-Again SHell.
|
|
|
|
> Interprete da linea di comando compatibile con `sh`.
|
2019-06-09 18:54:08 +01:00
|
|
|
> Maggiori informazioni: <https://gnu.org/software/bash>.
|
2019-01-24 20:35:08 +00:00
|
|
|
|
|
|
|
- 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`
|