mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
cat: add Italian translation.
This commit is contained in:
parent
2b628e3751
commit
250e7e89b5
1 changed files with 19 additions and 0 deletions
19
pages.it/common/cat.md
Normal file
19
pages.it/common/cat.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# cat
|
||||
|
||||
> Stampa e concatena file.
|
||||
|
||||
- Stampa i contenuti di un file su standard output:
|
||||
|
||||
`cat {{file}}`
|
||||
|
||||
- Concatena più file in un unico file:
|
||||
|
||||
`cat {{file1}} {{file2}} > {{file_finale}}`
|
||||
|
||||
- Aggiungi il contenuto di diversi file alla fine di un file:
|
||||
|
||||
`cat {{file1}} {{file2}} >> {{file_finale}}`
|
||||
|
||||
- Numera tutte le linee stampate:
|
||||
|
||||
`cat -n {{file}}`
|
Loading…
Add table
Reference in a new issue