免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2015 | 回复: 4
打印 上一主题 下一主题

请教?为何串大于2000行就抱错?1500正常???? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-09-23 11:30 |只看该作者 |倒序浏览
代码如下:

$CMD="cat temp_data.txt |head -2000| awk -F \"\\t\" '{print \$1\"\\t\"\$2\"\\t\"\$3\"\\t\"\$4\"\\t\"\$5}' ";
print $CMD."\n";
open (CMD, "$CMD | " || die "Get pcode Error! Exit!++++++++++++++++++++++++";
while(<CMD>{
        chomp;
        ($yearmonthday,$cmccoruni, $province, $area, $fee_dianbo) = split(/\t/);
        $print_string.="<tr><td>$yearmonthday</td><td>$cmccoruni</td><td>$province</td><td>$area</td><td>$fee_dia
nbo</td></tr>\n";
}
close CMD;

$print_string.="</table></body></html>\n";

my $CMD="echo \"$print_string\" | wc";

if (system($CMD))
{
         print STDERR "Coldn't run the command $CMD ERR!\n";
}

第一句,如果把其中的 "head -2000" 改为 “head -1500" system就会执行正确,要是head -2000就会执行失败,问一下高手这是为什么???

论坛徽章:
0
2 [报告]
发表于 2008-09-23 12:32 |只看该作者
错误 消息....

论坛徽章:
0
3 [报告]
发表于 2008-09-23 12:36 |只看该作者
你的程序是要取最后一次循环的值?
当运行system 时, $print_string 这个得到的是最后一行的值。

论坛徽章:
0
4 [报告]
发表于 2008-09-23 12:58 |只看该作者
原帖由 forlorngenius 于 2008-9-23 12:36 发表
你的程序是要取最后一次循环的值?
当运行system 时, $print_string 这个得到的是最后一行的值。



麻烦你最好还是仔细看一下。再说。

如果数据大于2000行的话 ,系统报错走如下语句:

print STDERR "Coldn't run the command $CMD ERR!\n";

为何????

[ 本帖最后由 zhaofei1318 于 2008-9-23 13:04 编辑 ]

论坛徽章:
0
5 [报告]
发表于 2008-09-23 16:59 |只看该作者

回复 #4 zhaofei1318 的帖子

if you use perl, why use so complicate shell command?
check child process if running open FH,  | .
The simple way to read n th line from a file:

  1. @html = ('<table>');
  2. open F,   "temp_data.txt" or die "$!\n";
  3. while (<F>) {
  4.     chomp;
  5.     last if $. > 2000;     # stop to read line if linenumber is 2000
  6.    # process lines to 2000
  7.    my @rec = split /\t/;
  8.    push @html, "<tr>";
  9.     foreach my $item (@rec) {
  10.        push @html,  "<td>$item</td>";
  11.     }
  12.     push @html, "</tr>";
  13. }
  14. close F;
  15. push @html, "</table>";
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP