mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 18:42:07 +02:00

* pages/*: update links and more info link script Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: reformat code * ax-webapp: fix link * curl: fix false positive Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
20 lines
470 B
Markdown
20 lines
470 B
Markdown
# head
|
|
|
|
> Gibt den ersten Teil einer Datei aus.
|
|
> Weitere Informationen: <https://manned.org/head.1p>.
|
|
|
|
- Gib die ersten paar Zeilen einer Datei aus:
|
|
|
|
`head -n {{anzahl_an_zeilen}} {{datei}}`
|
|
|
|
- Gib die ersten Bytes einer Datei aus:
|
|
|
|
`head -c {{anzahl_an_bytes}} {{datei}}`
|
|
|
|
- Gib alle bis auf die letzten Zeilen einer Datei aus:
|
|
|
|
`head -n -{{anzahl_an_zeilen}} {{datei}}`
|
|
|
|
- Gib alle bis auf die letzten Bytes einer Datei aus:
|
|
|
|
`head -c -{{anzahl_an_bytes}} {{datei}}`
|