I have a problem, running a simple perl command om the batch farm.
Depending on how I submitt the command, I get different result.
The command is:
perl -e "use Sys::Hostname; open host,">>/misc/wuestenf/Hydra/macros/Batch/hosts_problem.txt""
If I submit this command interactively (bsub -I -q quick ...)
I get no error message.
I I submit the same command non interactively, I get an error message.
From the report, the submitted command looks like:
perl -e "use Sys::Hostname; open \$host,\">>/misc/wuestenf/Hydra/macros/Batch/hosts_problem.txt\""
The error message is:
/misc/wuestenf/.lsbatch/1139564366.730234: line 8: perl -e "use Sys::Hostname; open \$host,\">>/misc/wuestenf/Hydra/macros/Batch/hosts_problem.txt\"": No such file or directory
Whats going wrong here?