in reply to Re: redirect STDOUT from system() functionin thread redirect STDOUT from system() function
#!/usr/bin/perl -wT use strict; # delete $ENV{qw( BASH_ENV PATH )}; my $output = `/bin/ls`; print "Output is ($output)\n"; [download]