in reply to Read System output Into a variable Name?

use backticks or qx;
my $var = `system_command`;
or
my $var = qx/system_command/;
Boris