echo off
for %%v in (one two three) do (
echo %%v
)
This is simple usage of for loop in batch file.This can be extended to file reading and more.
Here you can see software programming related articles,tips and sample code snippets.
echo off
for %%v in (one two three) do (
echo %%v
)
No comments:
Post a Comment