How can I write a .bat file that will run same .exe file multiple times
I'd like to write a .bat
file that can run same .exe
file multiple times with different input files.
Does anyone know how to implement this task? What kind of commands shoul开发者_如何转开发d I use?
Example:
FOR %v IN (c:\Users\public\videos\*.avi) DO my.exe %v
For more information just type
for /?
精彩评论