使用automator创建一个实用程序,该实用程序使用终端打开特定文件夹并运行“指南针监视”脚本

时间:2015-04-22 06:43:41

标签: terminal watch automator compass utility

我有这个automator设置,允许您打开带终端的文件夹。我想要的是,通过终端打开文件夹后,它应该运行compass watch脚本。

这是我目前所拥有的,但我似乎并没有找到解决方案。我尝试添加一些AppleScript和一些bash,但似乎没有任何效果。有人知道解决方案吗?

Finder open with terminal utility

1 个答案:

答案 0 :(得分:1)

试试这个:

在工作流程中添加“运行AppleScript ”操作

如果compass watch脚本是文件,请使用此 AppleScript 脚本

on run {input, parameters}
    set compasswatchScript to quoted form of "" -- drag drop the script file between double quote
    tell application "Terminal"
        do script compasswatchScript in window 1
    end tell
end run

将脚本文件的路径插入此脚本的第二行

-

如果compass watch是命令,请使用此 AppleScript 脚本

on run {input, parameters}
    tell application "Terminal"
        do script "compass watch" in window 1
    end tell
end run