我使用以下语法编写AppleScript:
do shell script "something"
do shell script "something 2"
do shell script "something 3"
让我们说“某事2”给我们一个错误,并没有正确执行。无论“2件事”的结果是什么,我如何让AppleScript继续进行“3件事”?
希望你明白,
谢谢!
答案 0 :(得分:1)
只需添加try
块
do shell script "something"
try
do shell script "something 2"
end try
do shell script "something 3"