<div dir="ltr">The "-n" causes Perl to assume a loop around the program, which makes it iterate over filename arguments somewhat like `sed -n` or awk. <div><br></div><div>Now, is it possible to skip some lines myself in such "perl -wn" script? </div><div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div><div>#!/usr/bin/perl -wn</div></div><div><br></div><div>if (/my case/) {</div><div>  # Skip two lines</div><div>  <>; <>;</div><div>  # Deal with the rest </div><div>}</div></blockquote><div><br></div><div>The above is not working for me. $_ is stuck at the same line/content. </div><div><br></div><div>How to skip some lines in such "perl -wn" script? </div><div><br></div><div>Thanks</div><div><br></div><div>Antonio</div><div><br></div><div><br></div></div>