如何暂停applescript的执行一段时间

如何暂停applescript的执行一段时间

本文介绍了如何暂停applescript的执行一段时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 Automator 中有一个小苹果脚本:

I have a small applescript in Automator:

do shell script "osascript ~/Focus-On.scpt"
delay 60
do shell script "osascript ~/Focus-Off.scpt"

基本上,我想执行第一个 shell 脚本,然后,一分钟后,第二个.

Basically, i want to execute the first shell script, then, after a minute, the second one.

但是 Automator 会毫不延迟地执行这两项操作.如何解决?

But Automator executes both without any delay. How to fix it?

推荐答案

我发现的最简单的方法:将作业传递给 shell:

Easiest way i found: just to pass the job to a shell:

do shell script "osascript ~/Focus-On.scpt; sleep 10; osascript ~/Focus-Off.scpt"

这篇关于如何暂停applescript的执行一段时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-29 05:46