作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个简单的 shell/python 脚本可以打开其他窗口。我想在脚本完成后将运行脚本的终端带到前台。
我知道我的父窗口的进程 ID。 如何将给定窗口置于前台?我想我必须一路从 PID 中找出窗口名称。
最佳答案
不确定是否有正确的方法,但这对我有用:
osascript<<EOF
tell application "System Events"
set processList to every process whose unix id is 350
repeat with proc in processList
set the frontmost of proc to true
end repeat
end tell
EOF
您也可以使用 osacript -e '...'
来完成。
显然将 350
更改为您想要的 pid。
关于macos - 如何将进程窗口置于 OS X 的前台?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34746399/
我是一名优秀的程序员,十分优秀!