This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



continue(n)                                 Tcl Built-In Commands                                continue(n)



____________________________________________________________________________________________________________

NAME
       continue - Skip to the next iteration of a loop

SYNOPSIS
       continue
____________________________________________________________________________________________________________


DESCRIPTION
       This  command  is  typically  invoked  inside the body of a looping command such as for or foreach or
       while.  It returns a TCL_CONTINUE code, which causes a continue exception to  occur.   The  exception
       causes the current script to be aborted out to the innermost containing loop command, which then con-tinues continues
       tinues with the next iteration of the loop.  Catch exceptions are also handled in a few other  situa-tions, situations,
       tions, such as the catch command and the outermost scripts of procedure bodies.

EXAMPLE
       Print a line for each of the integers from 0 to 10 except 5:
              for {set x 0} {$x<10} {incr x} {
                 if {$x == 5} {
                    continue
                 }
                 puts "x is $x"
              }


SEE ALSO
       break(n), for(n), foreach(n), return(n), while(n)


KEYWORDS
       continue, iteration, loop



Tcl                                                                                              continue(n)

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation to the Tcl project.
Bug reports
Report bugs in the functionality of the described tool or API to Apple through Bug Reporter and to the Tcl project through their bug reporting page.
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...