2023-02-03 04:24:27 +00:00
|
|
|
# head
|
|
|
|
|
|
|
|
> Output the first part of files.
|
|
|
|
> More information: <https://keith.github.io/xcode-man-pages/head.1.html>.
|
|
|
|
|
|
|
|
- Output the first few lines of a file:
|
|
|
|
|
2023-02-20 07:05:58 +00:00
|
|
|
`head --lines {{8}} {{path/to/file}}`
|
2023-02-03 04:24:27 +00:00
|
|
|
|
|
|
|
- Output the first few bytes of a file:
|
|
|
|
|
2023-02-20 07:05:58 +00:00
|
|
|
`head --bytes {{8}} {{path/to/file}}`
|
2023-02-03 04:24:27 +00:00
|
|
|
|
|
|
|
- Output everything but the last few lines of a file:
|
|
|
|
|
2023-02-20 07:05:58 +00:00
|
|
|
`head --lines -{{8}} {{path/to/file}}`
|
2023-02-03 04:24:27 +00:00
|
|
|
|
|
|
|
- Output everything but the last few bytes of a file:
|
|
|
|
|
2023-02-20 07:05:58 +00:00
|
|
|
`head --bytes -{{8}} {{path/to/file}}`
|