continue for core

Continue a loop from the next iteration.

Signature

> continue

Notes

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

Examples

Continue a loop from the next iteration

> for i in 1..10 { if $i == 5 { continue }; print $i }