When I run a compilation command from batch file, the command did execute but after it completed, the command window close immediately
I'm expecting the result shows in the command window after compilation has been completed
When I run a compilation command from batch file, the command did execute but after it completed, the command window close immediately
I'm expecting the result shows in the command window after compilation has been completed
Just append to your batch file an instruction that requires you to press a key before moving forward. Try this:
echo Press any key to exit...
pause
Reference here