in reply to Re: How to output backtick or qx to a variable and STDOUT at the same time?
in thread How to output backtick or qx to a variable and STDOUT at the same time?
#!usr/bin/perl use strict; use warnings; use Capture::Tiny qw(capture tee); my ($stdout, $stderr, $exit) = tee { system('ls', '-l'); }; print $stdout;
|
|---|