使用 macOS 快捷方式运行“at”命令

使用 macOS 快捷方式运行“at”命令

我有一个快捷方式,我想在 x 分钟内运行。我可以从命令行运行快捷方式,如下所示:

shortcuts run "turn lights off"

然而,当我尝试使用它来安排它时at,如下所示:

echo "shortcuts run \"turn lights off\"" | at now + 1 minute

我收到以下错误(如邮件中所示):

Error: Couldn’t communicate with a helper application.

这个问题有解决办法吗?如何使用 安排快捷方式at

答案1

我能够弄清楚。您可以通过使用at特权更高的应用程序(例如Automator.

echo "automator ./Lights.workflow" | at now + 1 minute

相关内容