@echo off
FOR /L %%i IN (1,1,99) DO (
echo This is loop iteration %%i
type nul > exercise%%i.js
)
pause
The following BAT command creates a blank text file named exercise.txt:
@echo off
type nul > exercise.txt
@echo off
FOR /L %%i IN (1,1,99) DO (
echo This is loop iteration %%i
type nul > exercise%%i.js
)
pause
The following BAT command creates a blank text file named exercise.txt:
@echo off
type nul > exercise.txt
No comments:
Post a Comment