以下是.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 &&
答案 0 :(得分:2)
只需与; 分开,而不是&&
编辑:; 真的不需要(@the Tin Man)