Files
tldr/pages.it/common/head.md
K.B.Dharun Krishna 8538a31451 pages/*: add standard translation and links (#11331)
* pages/*: add standard translation and links

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix1: false positives; standardize Bengali, Hindi, Nepali periods

* fix: periods in recently added Bengali pages

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* fix: false positives in modified files

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* cleanup: update to native period in Bengali l10n

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-11-06 14:02:31 +05:30

473 B

head

Stampa a schermo le prime linee di un file. Maggiori informazioni: https://manned.org/head.1p.

  • 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}}