tldr/pages.zh/osx/head.md

13 lines
235 B
Markdown
Raw Normal View History

2019-02-26 03:13:38 +00:00
# head
> 输出文件的开头部分。
> 更多信息:<https://ss64.com/osx/head.html>.
2019-02-26 03:13:38 +00:00
- 输出文件的前几行:
2019-02-26 03:13:38 +00:00
`head -n {{行数}} {{文件名}}`
- 输出文件的前几个字节:
2019-02-26 03:13:38 +00:00
`head -c {{字节数}} {{文件名}}`