执行错误:Finder收到错误:应用程序未运行。 (-600)

时间:2014-06-13 01:48:12

标签: macos applescript

我正在尝试使用AppleScript制作别名。我使用的是Mac OS X 10.9.3(Mavericks)。

sato ~ $ ll /Users/sato/src/test.txt 
-rw-r--r-- 1 sato staff 18410 Jun 13 10:36 /Users/sato/src/test.txt
sato ~ $ ll dst/
total 0
sato ~ :( $ osascript -e 'tell application "Finder" to make alias file to POSIX file "/Users/sato/src/test.txt" at POSIX file "/Users/sato/dst"'
29:121: execution error: Finder got an error: Application isn’t running. (-600)
sato ~ :( $ osascript -e 'tell application "Finder" to make alias file to POSIX file "/Users/sato/src/test.txt" at POSIX file "/Users/sato/dst/"'
29:122: execution error: Finder got an error: Application isn’t running. (-600)
sato ~ :( $ osascript -e 'tell application "Finder" to make alias file to POSIX file "/Users/sato/src/test.txt" at POSIX file "/Users/sato/dst/link"'
29:126: execution error: Finder got an error: Application isn’t running. (-600)

有什么问题?

1 个答案:

答案 0 :(得分:5)

它在我的电脑上工作正常。 我想也许你可以尝试这些东西:

  1. 尝试重新启动Finder;
  2. 尝试重新启动Applescript Editor;
  3. 尝试重新启动计算机。
  4. 我遇到过类似的问题。