1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 13:42:07 +02:00
tldr/pages.ko/common/split.md
K.B.Dharun Krishna 898f711019
pages/*: update GNU coreutils links, sync translation pages (#15543)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-01-18 18:45:33 +05:30

729 B

split

파일을 여러 조각으로 분할. 더 많은 정보: https://www.gnu.org/software/coreutils/manual/html_node/split-invocation.html.

  • 파일을 10줄씩 분할 (마지막 조각 제외):

split -l 10 {{경로/대상/파일}}

  • 파일을 5개의 파일로 분할. 각 조각이 동일한 크기를 갖도록 분할 (마지막 조각 제외):

split -n 5 {{경로/대상/파일}}

  • 파일을 각 조각이 512바이트인 크기로 분할 (마지막 조각 제외; 킬로바이트 단위는 512k, 메가바이트 단위는 512m 사용):

split -b 512 {{경로/대상/파일}}

  • 줄을 끊지 않고 각 조각이 최대 512바이트가 되도록 파일 분할:

split -C 512 {{경로/대상/파일}}