如何在 shell 脚本中从 xdg-open 返回
我有一些 shell 函数可以让我在浏览器中快速打开某些内容,例如: issue () { if [[ -z "$1" ]] then xdg-open "https://github.com/myname/myrepo/issues/$(git branch | grep '*' | grep -Poh '\d+')" else xdg-open "https://github.com/myname/myname/issues/$1" fi } 该函数加载到我的 shell 启动脚本中,并且...