2025-03-14 21:59:59 -06:00
|
|
|
# head
|
|
|
|
|
|
|
|
|
|
> 输出文件的开头部分。
|
2026-02-18 06:55:01 -07:00
|
|
|
> 另请参阅:`tail`。
|
|
|
|
|
> 更多信息:<https://keith.github.io/xcode-man-pages/head.1.html>。
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- 输出文件的前几行:
|
|
|
|
|
|
|
|
|
|
`head -n {{行数}} {{文件名}}`
|
|
|
|
|
|
|
|
|
|
- 输出文件的前几个字节:
|
|
|
|
|
|
|
|
|
|
`head -c {{字节数}} {{文件名}}`
|