Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
where comm.out contains the redirected output from command.my $command="/usr/local/coms/command >comm.out"; system($command);
would simple redirect the output to the array @arraymy $command="/usr/local/coms/command "; system($command)>@array;
|
|---|