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

@@ -0,0 +1,20 @@
# seq
> 숫자 시퀀스를 `stdout`에 출력.
> 더 많은 정보: <https://www.gnu.org/software/coreutils/seq>.
- 1부터 10까지의 시퀀스:
`seq 10`
- 5부터 20까지 3씩 증가하는 숫자:
`seq 5 3 20`
- 출력 항목을 줄바꿈 대신 공백으로 구분:
`seq -s " " 5 3 20`
- 출력 너비를 최소 4자리로 맞추고 필요한 경우 0으로 채움:
`seq -f "%04g" 5 3 20`