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

时间:2015-01-19 00:51:28

标签: macos unix

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

2 个答案:

答案 0 :(得分:1)

你可以使用" Automator"这样:

  1. 创建自动应用程序
  2. 添加"运行脚本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. 跑吧!将它移动到您想要的位置,运行它......

答案 1 :(得分:0)

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