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

@@ -0,0 +1,20 @@
# select
> 메뉴를 생성하기 위한 Bash 내장 구조.
> 더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-select>.
- 개별 단어로 메뉴 생성:
`select {{단어}} in {{사과 오렌지 배 바나나}}; do echo ${{단어}}; done`
- 다른 명령의 출력으로 메뉴 생성:
`select {{줄}} in $({{명령}}); do echo ${{줄}}; done`
- `select`의 프롬프트 문자열을 지정하고 현재 디렉토리에서 파일이나 폴더를 선택하는 메뉴 생성:
`PS3="{{파일을 선택하세요: }}"; select {{파일}} in *; do echo ${{파일}}; done`
- Bash 배열로 메뉴 생성:
`{{과일들}}=({{사과 오렌지 배 바나나}}); select {{단어}} in ${{{과일들[@]}}}; do echo ${{단어}}; done`