免费注册 查看新帖 |

Chinaunix

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

[初学请教] 想调用一个外部程序,然后将其输出重定向到一个指定文件中,怎么写? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-04-29 17:15 |只看该作者 |倒序浏览
不好意思,第一次写perl,如果太白了,还请大家见凉。
Baidu了许多,但是找不到能够用的。

  1. $path = "c:\\temp\\list.txt";
  2. my $hfile = open(source, "< $path");
  3. if ($hfile)
  4. {
  5.   print $path;
  6.   print "\n";

  7.   $input = IO::File->new($path);
  8.   my $outfile = "C:\\temp\\outfile.txt";
  9.   open IN, ">$outfile";

  10.   while(defined($line = $input->getline()))
  11.   {
  12.       chomp($line);
  13.       STDOUT->print($line);
  14.       system("ping $line"); #I want to redirect the output to a file.
  15.       print "\n";
  16.   }

  17.   $input->close();
  18.   $outfile->close();
  19. }

  20. close source;
复制代码

论坛徽章:
0
2 [报告]
发表于 2011-04-29 17:52 |只看该作者
直接用管道啊....

system("ping $line > ping.file");

论坛徽章:
0
3 [报告]
发表于 2011-04-30 08:05 |只看该作者
回复 1# 百分百好牛


    An example from <<network programming with perl>>


#!/usr/bin/perl
# file: redirect.pl

print "Redirecting STDOUT\n";
open (SAVEOUT,">&STDOUT");
open (STDOUT,">test.txt") or die "Can't open test.txt: $!";

print "STDOUT is redirected\n";
system "date";

open (STDOUT,">&SAVEOUT");
print "STDOUT restored\n";

When this script runs, its output looks like this:

% redirect.pl
Redirecting STDOUT
STDOUT restored

and the file test.txt contains these lines:

STDOUT is redirected
Thu Aug 10 09:19:24 EDT 2000
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP