1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 22:15:42 +02:00

head: add Italian translation.

fixed typos
This commit is contained in:
gRastello 2019-02-05 10:49:54 +01:00 committed by Marco Bonelli
parent 94352e838b
commit ccb7e50fe4

19
pages.it/common/head.md Normal file
View file

@ -0,0 +1,19 @@
# head
> Stampa a schermo le prime linee di un file.
- Stampa a schermo le prime linee di un file:
`head -n {{numero_di_linee}} {{file}}`
- Stampa a schermo i primi byte di un file:
`head -c {{numero_di_byte}} {{file}}`
- Stampa a schermo tutto il file meno le ultime linee:
`head -n -{{numero_di_linee}} {{file}}`
- Stampa a schermo tutto il file meno gli ultimi byte:
`head -c -{{numero_di_byte}} {{file}}`