Answers for "loops in batch programming"

1

batch script loop

for /l %x in (1, 1, 100) do (
   echo %x
   copy %x.txt z:whateveretc
)
Posted by: Guest on November-02-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language