我正在尝试创建一个 Automator 应用程序来同步我的 iMac 和 MacBook。到目前为止,我已成功安装 MacBook 并在 Chronosync 中打开同步文件。
现在我需要做的就是让 Automator 实际同步。
我怎样才能做到这一点?
答案1
您可以使用如下运行 AppleScript 操作:
tell application "ChronoSync"
open POSIX file "/tmp/Untitled.sync"
Synchronize of document 1
repeat until syncStatus of document 1 is 0
delay 1
end repeat
save of document 1
close of document 1
quit
end tell