0

嗨,我需要在两个文件中都有 perl 脚本的输出,STDOUT但我不能像./a.pl > out.log. 可能吗?

4

2 回答 2

4

显然,你应该使用

./a.pl | tee out.log

但听起来你会拒绝。下一个最好的可能是File::Tee

use File::Tee qw( tee );
tee(STDOUT, '>', 'out.log');
于 2013-03-26T13:31:42.503 回答
2

试试这个:

a.pl | tee out.log

于 2013-03-26T13:29:50.793 回答