3

Lets say i want to do

gcc a.cpp

BUT i dont want to block. I just want to run and continue, like running in the background. How do i do that in a bat file? I'm using windows 7

1 Answer 1

3

try this:

start /b gcc a.cpp

this starts the command "without opening a new window" .. which is essentially running the app in the "background". see start /? for more options.

You must log in to answer this question.