1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-01 19:17:57 +01:00
tldr/pages/linux/head.md

20 lines
406 B
Markdown
Raw Normal View History

2014-07-16 16:50:37 +02:00
# head
> Output the first part of files.
2014-07-16 16:50:37 +02:00
- Output the first few lines of a file:
2014-07-16 16:50:37 +02:00
`head -n {{count_of_lines}} {{filename}}`
2014-07-16 16:50:37 +02:00
- Output the first few bytes of a file:
2014-07-16 16:50:37 +02:00
`head -c {{size_in_bytes}} {{filename}}`
2014-07-16 16:50:37 +02:00
- Output everything but the last few lines of a file:
2014-07-16 16:50:37 +02:00
`head -n -{{count_of_lines}} {{filename}}`
2014-07-16 16:50:37 +02:00
- Output everything but the last few bytes of a file:
2014-07-16 16:50:37 +02:00
`head -c -{{size_in_bytes}} {{filename}}`