perl读取跳过第一行

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

readline READ;    # skip the first line 

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

 

posted @ 2012-12-13 15:36  蒋蒋  阅读(2206)  评论(0编辑  收藏  举报