common/s*: add and update Korean translation (#14666)

* common/s*: add and update Korean translation

* scamper: fix typo

* Update pages.ko/common/simplehttpserver.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/common/steamcmd.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Sebastiaan Speck <shem.speck@gmail.com>
Co-authored-by: Chooooo <contact@choo.ooo>
This commit is contained in:
코드싸이
2024-11-09 10:41:41 +09:00
committed by GitHub
parent 8058b46345
commit 4b5248236b
196 changed files with 4323 additions and 2 deletions

20
pages.ko/common/split.md Normal file
View File

@@ -0,0 +1,20 @@
# split
> 파일을 여러 조각으로 분할.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/split>.
- 파일을 10줄씩 분할 (마지막 조각 제외):
`split -l 10 {{경로/대상/파일}}`
- 파일을 5개의 파일로 분할. 각 조각이 동일한 크기를 갖도록 분할 (마지막 조각 제외):
`split -n 5 {{경로/대상/파일}}`
- 파일을 각 조각이 512바이트인 크기로 분할 (마지막 조각 제외; 킬로바이트 단위는 512k, 메가바이트 단위는 512m 사용):
`split -b 512 {{경로/대상/파일}}`
- 줄을 끊지 않고 각 조각이 최대 512바이트가 되도록 파일 분할:
`split -C 512 {{경로/대상/파일}}`