CONTINUE(1CSH) COMMAND REFERENCE CONTINUE(1CSH)
NAME
continue - continue execution of loop (csh built-in)
SYNOPSIS
continue
DESCRIPTION
The continue command is used to continue the execution of
the nearest enclosing while or foreach statement. All
command lines up to the corresponding end are ignored.
Like break(1csh), continue causes the rest of the commands
on the current line to be executed, so multiple continue
commands on the same line will continue execution at the
corresponding loop.
EXAMPLES
This example shows a shell script which reads lines from the
standard input up to the line ``end''. If a line begins
with the character `#', the word ``comment'' is printed.
#!/bin/csh -f
set x="$<"
while ("$x" != "end")
if ("$x" =~ \#*) then
set x="comment"
continue
endif
echo "$x"
set x="$<"
end
RETURN VALUE
[NO_ERRS] Command completed without error.
[1] An error of the type described in the message
occurred.
CAVEATS
Unlike continue(1sh), the csh version of continue does not
take an argument.
SEE ALSO
@(1csh), alias(1csh), bg(1csh), break(1csh), break(1sh),
cd(1csh), chdir(1csh), continue(1sh), csh(1csh), dirs(1csh),
echo(1csh), eval(1csh), exec(1csh), exit(1csh), fg(1csh),
glob(1csh), goto(1csh), hashstat(1csh), history(1csh),
jobs(1csh), kill(1csh), limit(1csh), logout(1csh),
nice(1csh), nohup(1csh), notify(1csh), onintr(1csh),
popd(1csh), pushd(1csh), rehash(1csh), repeat(1csh),
set(1csh), setenv(1csh), sh(1sh), shift(1csh), source(1csh),
stop(1csh), suspend(1csh), time(1csh), umask(1csh),
Printed 4/6/89 1
CONTINUE(1CSH) COMMAND REFERENCE CONTINUE(1CSH)
unhash(1csh), unalias(1csh), unlimit(1csh), unset(1csh),
unsetenv(1csh), wait(1csh), and which(1csh).
Printed 4/6/89 2
%%index%%
na:408,134;
sy:542,184;
de:726,928;
ex:1654,546;
rv:2200,274;
ca:2474,298;
se:2772,1307;4559,302;
%%index%%000000000131