junxnone / xwiki

https://junxnone.github.io/xwiki/
0 stars 0 forks source link

Windows batch for #229

Open junxnone opened 3 years ago

junxnone commented 3 years ago

Reference

UseCase

@echo off
for /l %%a in (1,1,10) do (
    app.exe
    ren results.txt "results_%%a.txt"

)