common/r*: add Korean translation (#14644)

* common/r*: add Korean translation

* Update rtv.md

* Update pages.ko/common/rtv.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
코드싸이
2024-11-07 10:35:14 +09:00
committed by GitHub
parent ef281bb658
commit fd7d9f925b
89 changed files with 2133 additions and 1 deletions

16
pages.ko/common/retry.md Normal file
View File

@@ -0,0 +1,16 @@
# retry
> 명령이 성공하거나 기준이 충족될 때까지 명령을 반복.
> 더 많은 정보: <https://github.com/minfrin/retry>.
- 명령이 성공할 때까지 재시도:
`retry {{명령}}`
- 명령이 성공할 때까지 n초마다 재시도:
`retry --delay={{n}} {{명령}}`
- n번 시도 후 포기:
`retry --times={{n}} {{명령}}`