从命令行获取 Safari 的当前位置?

从命令行获取 Safari 的当前位置?

如何在 shell 脚本中获取 Safari 最前面窗口的当前选项卡的位置?

答案1

我在以下位置创建了以下 shell 脚本~/bin/currenturl

osascript -e 'tell application "Safari" to return URL of front document' | tr -d '\n'

chmod +x当然了。)

相关内容