crp Posted January 22, 2009 Posted January 22, 2009 I want to have a batch file create a series of batch files , each of which use a variable.the final output should read:for %%V in (*.vnc) do fixit %%VI tried a batch file for /L %%Q in (0,1,3) do echo for %%V in (*%%Q.vnc) do fixit %%V > %%Q_Fix.bat but that didn't work, as the resulting batch files (ie: 3_fix.bat) came out:for %V in (*3.vnc) do fixit %VHow can I 'protect' the double percentage sign in the echo output to the file? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.