in reply to Re: perl -pie "???"
in thread perl -pie "???"

No. print occurs inside the continue block which is executed at the end of the while's block. next() just jumps right into continue.

while ( <> ) { # YOUR CODE GOES HERE } continue { # next() resumes here. print }