in reply to Perl LSF module help

FYI. backticks can also return a list.
my $cmd = `lsload -I tmp2`; my @arr = split("\n", $cmd );

can be simplified to:

my @arr = `lsload -I tmp2`;