in reply to Get result STDOUT of exe into scalar/array instead of file
my $command = "$FindBin::Bin\\lib\\lmutil lmstat -c $VALOR_LICENSE_FIL +E"; my $result = qx/$command/; # qx / / # or my $result = `$command`; # backquote ` ` [download]