OSX 打开终端到特定位置的图标
OSX icon to open terminal to specific location
我如何创建一个图标,将终端打开到特定目录?也可以进入图标所在的目录。
您可以这样使用"Automator":
- 创建一个自动化应用程序
- 添加 "Run Script Applescript" 操作
修改代码为:
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
- 保存
- 运行啦!把它移到你想要的地方,运行它...
终于找到了最简单的答案:使用 Finder 服务。参见 http://www.howtogeek.com/210147/how-to-open-terminal-in-the-current-os-x-finder-location。
我如何创建一个图标,将终端打开到特定目录?也可以进入图标所在的目录。
您可以这样使用"Automator":
- 创建一个自动化应用程序
- 添加 "Run Script Applescript" 操作
修改代码为:
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
- 保存
- 运行啦!把它移到你想要的地方,运行它...
终于找到了最简单的答案:使用 Finder 服务。参见 http://www.howtogeek.com/210147/how-to-open-terminal-in-the-current-os-x-finder-location。