break for core

Break a loop.

Signature

> break {flags}

Input/output types:

inputoutput
nothingnothing

Examples

Break out of a loop

> loop { break }

Notes

This command is a parser keyword. For details, check: https://www.nushell.sh/book/thinking_in_nu.html

break can only be used in while, loop, and for loops. It can not be used with each or other filter commands