我想在群集中运行多个命令后台,如下所示。但是它被打断了,没有成功完成。
nohup perl sgfa.pl -i 1.fa & sleep 1
nohup perl sgfa.pl -i 2.fa & sleep 1
nohup perl sgfa.pl -i 3.fa & sleep 1
为什么呢?任何建议都是希望。感谢。
答案 0 :(得分:0)
您可以尝试这样的事情: / usr / bin / nohup $(/ bin / bash -c' for i in {1..3}; do / usr / bin / perl sgfa.pl -i $ i.fa& / bin / sleep 1 ;完成')&
您收到的错误消息是什么?