2025-03-14 21:59:59 -06:00
|
|
|
# continue
|
|
|
|
|
|
|
|
|
|
> Skip to the next iteration of a `for`, `while`, `until` or `select` loop.
|
|
|
|
|
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-continue>.
|
|
|
|
|
|
|
|
|
|
- Skip to the next iteration:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`while :; do continue; {{echo "This will never be reached"}}; done`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Skip to the next iteration from within a nested loop:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`for i in {{{1..3}}}; do {{echo $i}}; while :; do continue 2; done; done`
|