如何在 cygwin 中运行应用程序而不阻塞 shell

发布于 2024-08-15 00:55:54 字数 162 浏览 2 评论 0原文

我想在 cygwin 中打开应用程序,例如记事本等,而不被 shell 阻止。有办法做到这一点吗?

例如,输入 notepad myfile.txt 将打开记事本,并且在关闭记事本之前,cygwin shell 将不可用。我希望 cygwin 在记事本打开时保持响应。

I would like to open applications in cygwin, e.g. notepad etc, without the shell blocking. Is there a way of doing this?

For example, typing in notepad myfile.txt will open notepad, and the cygwin shell will be unavailable until notepad is closed. I'd like cygwin to remain responsive whilst notepad is open.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我要还你自由 2024-08-22 00:55:54

如果您使用一些 UNIX shell,例如 sh,那么

notepad &

应该可以工作。

请记住:如果您使用其他 shell,则适用其他规则。 cmd 不会阻止 GUI 应用程序,除非使用 start /wait。但在类 UNIX 上,控制台程序和 GUI 程序之间没有区别。它们都在控制台上以交互方式运行,除非通过在命令后使用 & 启动它们来分离。

If you are using some UNIX shell such as sh, then

notepad &

should work.

Remember: If you're using another shell, then other rules apply. cmd won't block for GUI applications, unless start /wait is used. But on UNIX-likes there is no distinction between console programs and GUI programs. They all run interactively on the console unless detached by starting them with & after the command.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文