mirror of
https://github.com/tldr-pages/tldr
synced 2026-08-26 14:13:36 +01:00
322 B
322 B
break
for,while,until,select루프에서 빠져나오기. 더 많은 정보: https://www.gnu.org/software/bash/manual/bash.html#index-break.
- 하나의 루프에서 빠져나오기:
while :; do break; done
- 중첩된 루프에서 빠져나오기:
while :; do while :; do break 2; done; done