perl跳过前四行

while(<IN>)
{
 next if ($.<4);
 chomp $_; 
}
原文地址:https://www.cnblogs.com/blueicely/p/2816280.html