如何创建一个可以将终端打开到特定目录的图标?也可以进入图标所在的目录。
答案 0 :(得分:1)
你可以使用" Automator"这样:
将代码修改为:
on run {input, parameters}
tell application "terminal"
activate
set UnixPath to POSIX path of ((path to me as text) & "::")
do script with command "cd " & UnixPath
end tell
end run
答案 1 :(得分:0)
最后找到了最简单的答案:使用Finder服务。请参阅http://www.howtogeek.com/210147/how-to-open-terminal-in-the-current-os-x-finder-location。