Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Fixed Slow FOR loop

Jul
32
0
Not sure why, but the following executes very slowly in v15.00.27:

for %f in (*) (
echo %f
echo %f
echo %f
)

Unlike the following which executes in no time:

for %f in (*) (
echo %f
)
 

Similar threads

Back
Top