I want to get the output of a command into an array — like this:
my @output = `$cmd`;
but it seems that the output from the command
Enable automatic error checks:
require IPC::System::Simple; use autodie qw(:all); ⋮ my @output = `$cmd`;