Nix Nix
tldr-pages web client with multiple languages
Nix Nix
Search
On This Page

break

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

  • Break out of a single loop:

while :; do break; done

  • Break out of nested loops:

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

Contribute to This Page
Report New Issue View Source
Discuss this page