Is there a way to step through a .bat script? The thing is, I have a build script , which calls a lot of other scripts, and I would like to see what is the order in which they are called, so that I may know where exactly I have to go about and add my modifications.
Share
I don’t know of anyway to step through the execution of a .bat file but you can use
echoandpauseto help with debugging.Source: Batch File Help
@workmad3: answer has more good tips for working with the
echocommand.Another helpful resource… DDB: DOS Batch File Tips