OSX 打开终端到特定位置的图标

OSX icon to open terminal to specific location

我如何创建一个图标,将终端打开到特定目录?也可以进入图标所在的目录。

您可以这样使用"Automator":

  1. 创建一个自动化应用程序
  2. 添加 "Run Script Applescript" 操作
  3. 修改代码为:

    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
    
  4. 保存
  5. 运行啦!把它移到你想要的地方,运行它...

终于找到了最简单的答案:使用 Finder 服务。参见 http://www.howtogeek.com/210147/how-to-open-terminal-in-the-current-os-x-finder-location