osx/terminal-notifier: fix typo, osx/*: add Korean translation (#14758)
This commit is contained in:
20
pages.ko/osx/split.md
Normal file
20
pages.ko/osx/split.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# split
|
||||
|
||||
> 파일을 여러 조각으로 분할합니다.
|
||||
> 더 많은 정보: <https://keith.github.io/xcode-man-pages/split.1.html>.
|
||||
|
||||
- 파일을 각 조각이 10줄씩 되도록 분할 (마지막 조각 제외):
|
||||
|
||||
`split -l 10 {{경로/대상/파일}}`
|
||||
|
||||
- 정규 표현식으로 파일을 분할. 매칭된 라인은 다음 출력 파일의 첫 번째 라인이 됩니다:
|
||||
|
||||
`split -p {{cat|^[dh]og}} {{경로/대상/파일}}`
|
||||
|
||||
- 각 조각이 512바이트가 되도록 파일을 분할 (마지막 조각 제외; 킬로바이트는 512k, 메가바이트는 512m 사용):
|
||||
|
||||
`split -b 512 {{경로/대상/파일}}`
|
||||
|
||||
- 파일을 5개의 파일로 분할. 각 조각은 동일한 크기를 가지도록 분할됩니다 (마지막 조각 제외):
|
||||
|
||||
`split -n 5 {{경로/대상/파일}}`
|
Reference in New Issue
Block a user