如何在 cygwin 中运行应用程序而不阻塞 shell
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用一些 UNIX shell,例如
sh
,那么应该可以工作。
请记住:如果您使用其他 shell,则适用其他规则。
cmd
不会阻止 GUI 应用程序,除非使用start /wait
。但在类 UNIX 上,控制台程序和 GUI 程序之间没有区别。它们都在控制台上以交互方式运行,除非通过在命令后使用&
启动它们来分离。If you are using some UNIX shell such as
sh
, thenshould work.
Remember: If you're using another shell, then other rules apply.
cmd
won't block for GUI applications, unlessstart /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.