本文最后更新于 350 天前,其中的信息可能已经有所发展或是发生改变。
使用自动操作+AppleScript的方法
- 打开
自动操作
- 新建应用程序
- 切换实用工具
- 运行AppleScript
- 贴代码
on run {input, parameters}
tell application "Finder"
set currFolder to (POSIX path of (folder of the front window as string))
end tell
tell application "Terminal"
activate
do script ("cd " & "'" & currFolder & "'")
end tell
end run