我很难弄清楚为什么我不能使用 LSF 命令并行启动blaunch
命令:
for num in `seq 3`; do
blaunch -u JobHost ./cmd_${num}.sh &
done
错误信息:
Oct 29 13:08:55 2011 18887 3 7.04 lsb_launch(): Failed while executing tasks.
Oct 29 13:08:55 2011 18885 3 7.04 lsb_launch(): Failed while executing tasks.
Oct 29 13:08:55 2011 18884 3 7.04 lsb_launch(): Failed while executing tasks.
删除与号 ( &
) 允许命令按顺序执行,但我是在并行执行之后。