mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 06:22:07 +02:00
bash: add Italian translation.
This commit is contained in:
parent
fbc9ffc106
commit
0d2793a340
1 changed files with 28 additions and 0 deletions
28
pages.it/common/bash.md
Normal file
28
pages.it/common/bash.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# bash
|
||||
|
||||
> Bourne-Again SHell.
|
||||
> Interprete da linea di comando compatibile con `sh`.
|
||||
|
||||
- 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`
|
Loading…
Add table
Reference in a new issue