mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-31 04:17:55 +01:00
split: add Chinese translation
This commit is contained in:
parent
59eb354656
commit
76f161d31e
1 changed files with 15 additions and 0 deletions
15
pages.zh/osx/split.md
Normal file
15
pages.zh/osx/split.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# split
|
||||
|
||||
> 把一个文件拆分成几块.
|
||||
|
||||
- 分割一个文件,每个分割部分有 10 行(除了最后一个):
|
||||
|
||||
`split -l {{10}} {{文件名}}`
|
||||
|
||||
- 用正则表达式拆分文件.匹配行将是下一个输出文件的第一行:
|
||||
|
||||
`split -p {{cat|^[dh]og}} {{文件名}}`
|
||||
|
||||
- 拆分一个文件,每个拆分中有 512 个字节(除了最后一个文件,使用 512K 表示 Kb,512M 表示Mb):
|
||||
|
||||
`split -b {{512}} {{文件名}}`
|
Loading…
Reference in a new issue