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/shuf.md Normal file
View File

@@ -0,0 +1,20 @@
# shuf
> 무작위 순열 생성.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/shuf>.
- 파일의 줄 순서를 무작위로 섞고 결과 출력:
`shuf {{경로/대상/파일}}`
- 결과의 처음 5개 항목만 출력:
`shuf --head-count=5 {{경로/대상/파일}}`
- 출력을 다른 파일에 쓰기:
`shuf {{경로/대상/입력_파일}} --output={{경로/대상/출력_파일}}`
- 1-10 범위(포함)에서 임의의 숫자 3개 생성:
`shuf --head-count=3 --input-range=1-10 --repeat`