add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,12 +1,20 @@
# head
> 输出文件的开头部分。
> 更多信息:<https://keith.github.io/xcode-man-pages/head.1.html>.
> 输出文件的第一部分。
> 更多信息:<https://keith.github.io/xcode-man-pages/head.1.html>
- 输出文件的前几行:
`head -n {{行数}} {{文件名}}`
`head --lines {{8}} {{path/to/file}}`
- 输出文件的前几个字节:
`head -c {{字节数}} {{文件名}}`
`head --bytes {{8}} {{path/to/file}}`
- 输出文件的所有内容,除了最后几行:
`head --lines -{{8}} {{path/to/file}}`
- 输出文件的所有内容,除了最后几个字节:
`head --bytes -{{8}} {{path/to/file}}`