perl 读文件跳过第一行

open READ,"<","G:/project-xiaomai/yourfile.txt";

readline READ; # skip the first line

while (<READ>)
{
  print $_;
}
close READ;

posted @ 2017-03-30 11:41  白鸟li  阅读(857)  评论(0编辑  收藏  举报