in reply to Re: don't want to print certain lines
in thread don't want to print certain lines

I try it and it works..thank you.
But I don't understand this part

<IN> and next if /^FIELD/;
print OUT;
What does <IN> do here and why it didn't print ); that
appear after FIELD lines:?
  • Comment on Re^2: don't want to print certain lines

Replies are listed 'Best First'.
Re^3: don't want to print certain lines
by pg (Canon) on Oct 27, 2004 at 02:05 UTC

    The problem is your first next in your if block, any thing in that block after that next will never be executed.