SYNTAX

    continue [options]


OPTIONS

-h (--help) bool

Display help.


DESCRIPTION

Continues a while loop.

Example usage:

    while var ERR == 0
        <something> | export -s RESULT &| export ERR "$?"
        # Ignore result if it doesn't start with the right data
        var RESULT startswith "Important Text" || continue
        ...
    endwhile


SEE ALSO

while, endwhile, break


COPYRIGHT

Copyright (c) 2011 Accenture. All rights reserved.