1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 02:02:07 +02:00
tldr/pages.ko/common/retry.md
코드싸이 fd7d9f925b
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>
2024-11-07 10:35:14 +09:00

356 B

retry

명령이 성공하거나 기준이 충족될 때까지 명령을 반복. 더 많은 정보: https://github.com/minfrin/retry.

  • 명령이 성공할 때까지 재시도:

retry {{명령}}

  • 명령이 성공할 때까지 n초마다 재시도:

retry --delay={{n}} {{명령}}

  • n번 시도 후 포기:

retry --times={{n}} {{명령}}