perl – 从系统命令到文本文件捕获输出的最佳方法?

前端之家收集整理的这篇文章主要介绍了perl – 从系统命令到文本文件捕获输出的最佳方法?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用Perl的系统函数来捕获输出,以执行并将系统命令的ouptut重定向文件,但由于某种原因,我没有得到整个输出.

我正在使用以下方法

system("example.exe >output.txt");

这段代码有什么问题,还是有另一种方法可以做同样的事情?

解决方法

MVS’s answer相同,但现代且安全.
use strict;
use warnings;

open (my $file,'>','output.txt') or die "Could not open file: $!";
my $output = `example.exe`; 
die "$!" if $?; 
print $file $output;

更轻松

use strict;
use warnings;

use autodie;

open (my $file,'output.txt');
print $file `example.exe`;

如果你需要STDOUT和STDERR

use strict;
use warnings;

use autodie;
use Capture::Tiny 'capture_merged';

open (my $file,'output.txt');
print $file capture_merged { system('example.exe') };
原文链接:https://www.f2er.com/Perl/172869.html

猜你在找的Perl相关文章