break Command Examples

Break out of a for, while, until or select loop. More information: https://www.gnu.org/software/bash/manual/bash.html#index-break.

while :; do break; done

while :; do while :; do break 2; done; done