Con le mie poche poche reminescenze DOS sto cercando di compilare un batch file che esegue un file immesso da tastiera per un numero definito di volte sempre immesse da tastiera. Dove sbaglio????
set /P STRINGA=Digita link :
set /P /A NUMERO=Digita numero loop :
set /A NUMERATORE=0
set /A NUMERATORE2
:INCREMENTO
set /A NUMERATORE2=NUMERATORE +1
echo %NUMERATORE%
start %STRINGA%
if NUMERATORE2 < NUMERO then goto INCREMENTO
if NUMERATORE = NUMERO then goto FINE
:FINE
exit