Reputation: 181
I am fairly new to any programming. I have a task to perform in which the requirement is detailed below:-
Hope this explanation states the issue.
Maters of programming, bring me out of this.
Thanks in advance.
Upvotes: 2
Views: 2013
Reputation: 4685
You can try this (havent tested) for /l
iterates %%x from 1 to 65536 and then echo
writes whats left of the >
to the filename specified to the right.
for /l %%x in (1, 1, 6 ) do (
echo STRING TO BE WRITTEN NO %%x > %%x.txt
)
Upvotes: 1