Perl:将STDOUT重定向到两个文件

前端之家收集整理的这篇文章主要介绍了Perl:将STDOUT重定向到两个文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何将STDOUT流重定向到我的Perl脚本中的两个文件(重复)?目前我只是流入一个单一的日志文件
open(STDOUT,">$out_file") or die "Can't open $out_file: $!\n";

我需要改变什么?谢谢.

解决方法

您也可以使用 IO::Tee.
use strict;
use warnings;
use IO::Tee;

open(my $fh1,">","tee1") or die $!;
open(my $fh2,"tee2") or die $!;

my $tee=IO::Tee->new($fh1,$fh2);

select $tee; #This makes $tee the default handle.

print "Hey!\n"; #Because of the select,you don't have to do print $tee "Hey!\n"

是的,输出工作:

> cat tee1
Hey!
> cat tee2
Hey!
原文链接:https://www.f2er.com/Perl/172483.html

猜你在找的Perl相关文章