mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 20:35:34 +02:00
head: add Italian translation.
fixed typos
This commit is contained in:
parent
94352e838b
commit
ccb7e50fe4
1 changed files with 19 additions and 0 deletions
19
pages.it/common/head.md
Normal file
19
pages.it/common/head.md
Normal 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}}`
|
Loading…
Add table
Reference in a new issue