How to run an application in cygwin without locking the shell

I would like to open applications in cygwin, for example. notepad, etc. without blocking the shell. Is there any way to do this?

For example, entering text into a notepad myfile.txtnotebook will open, and the cygwin shell will not be available until the notebook is closed. I would like cygwin to stay responsive while notepad is open.

+3
source share
1 answer

If you use some UNIX shell, for example sh, then

notepad &

must work.

: , . cmd GUI, start /wait. UNIX- GUI. , , & .

+8

Source: https://habr.com/ru/post/1725153/


All Articles