windows - how to run two batch file independently? -
i have 2 batch file "bat1.bat" , "bat2.bat" need write batch file such "third.bat" can run "bat1.bat" , "bat2.bat" independently.(at same time). in reality can open 2 cmd , run them separately.in addition bat1 , bat2 both in infinite loops never exits
thanks
you use start that:
rem third.bat start bat1.bat start bat2.bat
Comments
Post a Comment