SyntaxFix
Write A Post
Hire A Developer
Questions
On Executing: for /f %%i in ('application arg0 arg1') do set VAR=%%i i was getting error: %%i was unexpected at this time. As a fix, i had to execute above as for /f %i in ('application arg0 arg1') do set VAR=%i
for /f %%i in ('application arg0 arg1') do set VAR=%%i
for /f %i in ('application arg0 arg1') do set VAR=%i