即使发生故障,如何一个接一个地执行所有bash cmds?

时间:2017-05-07 09:50:17

标签: bash shell jenkins

以下是.sh文件中要立即运行的一组cmds;但是,只要步骤中发生故障,就不会运行以下cmds(步骤)。

rake mobile BROWSER=chrome COUNTRY=AE DOCKER=false > ./reports/a.log &&
rake mobile BROWSER=chrome COUNTRY=BH DOCKER=false > ./reports/b.log &&
rake mobile BROWSER=chrome COUNTRY=QA DOCKER=false > ./reports/c.log &&
rake mobile BROWSER=chrome COUNTRY=EG DOCKER=false > ./reports/d.log &&
rake mobile BROWSER=chrome COUNTRY=LB DOCKER=false > ./reports/e.log &&
rake mobile BROWSER=chrome COUNTRY=ES DOCKER=false > ./reports/f.log &&
rake mobile BROWSER=chrome COUNTRY=MA DOCKER=false > ./reports/g.log &&

1 个答案:

答案 0 :(得分:2)

只需与; 分开,而不是&&

编辑:; 真的不需要(@the Tin Man)