运维网's Archiver
论坛
›
Perl
› perl跳过前四行
(^o^)/~完美
发表于 2015-12-29 12:25:23
perl跳过前四行
while(<IN>)
{
next if ($.<4);
chomp $_;
}
页:
[1]
查看完整版本:
perl跳过前四行