At any point in your filter rules, you can skip processing of all remaining rules (effectively skipping to the next record) by using the next statement. For example:
if (i > 4) next; |
Likewise, at any time, you can skip processing of the remainder of an input file by using the nextfile statement. For example:
if (i > 4) nextfile; |
Last updated: 2008-04-08