mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
12 lines
235 B
Markdown
12 lines
235 B
Markdown
# head
|
|
|
|
> 输出文件的开头部分。
|
|
> 更多信息:<https://ss64.com/osx/head.html>.
|
|
|
|
- 输出文件的前几行:
|
|
|
|
`head -n {{行数}} {{文件名}}`
|
|
|
|
- 输出文件的前几个字节:
|
|
|
|
`head -c {{字节数}} {{文件名}}`
|