mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-30 02:17:56 +01:00
bat: add Italian translation.
This commit is contained in:
parent
3941437007
commit
514954074d
1 changed files with 28 additions and 0 deletions
28
pages.it/common/bat.md
Normal file
28
pages.it/common/bat.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# bat
|
||||
|
||||
> Stampa e concatena file.
|
||||
> Un clone di `cat` con syntax highlighting e integrazione Git.
|
||||
|
||||
- Stampa i contenuti di un file su standard output:
|
||||
|
||||
`bat {{file}}`
|
||||
|
||||
- Concatena diversi file in un unico file:
|
||||
|
||||
`bat {{file1}} {{file2}} > {{file_finale}}`
|
||||
|
||||
- Aggiungi il contenuto di diversi file alla fine di un file:
|
||||
|
||||
`bat {{file1}} {{file2}} >> {{file_finale}}`
|
||||
|
||||
- Numera tutte le linee stampate:
|
||||
|
||||
`bat -n {{file}}`
|
||||
|
||||
- Evidenzia la sintassi di un file JSON:
|
||||
|
||||
`bat --language json {{file.json}}`
|
||||
|
||||
- Mostra tutti i linguaggi supportati:
|
||||
|
||||
`bat --list-languages`
|
Loading…
Reference in a new issue