common/w*: add Korean translation (#14523)

This commit is contained in:
코드싸이
2024-11-02 13:59:52 +09:00
committed by GitHub
parent 8a477df704
commit 8bcc0ead21
58 changed files with 1268 additions and 0 deletions

12
pages.ko/common/while.md Normal file
View File

@@ -0,0 +1,12 @@
# while
> 간단한 셸 루프.
> 더 많은 정보: <https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_09_04_09>.
- `stdin`을 읽고 각 줄에 대해 작업 수행:
`while read line; do echo "$line"; done`
- 매초마다 명령을 영구적으로 실행:
`while :; do {{명령}}; sleep 1; done`