我有这个automator设置,允许您打开带终端的文件夹。我想要的是,通过终端打开文件夹后,它应该运行compass watch
脚本。
这是我目前所拥有的,但我似乎并没有找到解决方案。我尝试添加一些AppleScript和一些bash,但似乎没有任何效果。有人知道解决方案吗?
答案 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