I use cygwin from my Windows command line, I always did everything quite happily, except for the ability to run something in the background (i.e. put &at the end of the command).
To give you more context, I want to be able to start the Mercurial web server and still be able to use the command line window and even close it without killing the server. For instance:
>hg serve &
listening at http://localhost:8000/ (bound to *:8000)
>echo "Still able to do this"
Any workarounds to this?
source
share