当从 Mac OS X 上的终端内启动 GUI 应用程序时,有没有办法将它们带到前台?如果我跑

/Applications/TextEdit.app/Contents/MacOS/TextEdit

在终端中,TextEdit 在后台打开。如果您在开发 GUI 应用程序时使用“make && ./run”,这会很烦人。

最佳答案

至少对于 TextEdit 和类似的 GUI 应用程序, open 将起作用:

> open /Applications/TextEdit.app

关于macos - Mac OS X : Bring GUI applications to foreground when launched from the command line,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7779454/

10-11 17:30