Código:
@echo off
echo title Primer programa
set numero=31
for /L %%x in (1,1,13) do (
SET /a m = %%x + %numero%
id3 -1 -2 -t "5.%%x" "%m%_PISTA.mp3"
)pause
exit
lo que estoy tratando de hacer es:
id3 -1 -2 -t "5.1" "32_PISTA.mp3"
id3 -1 -2 -t "5.2" "33_PISTA.mp3"
id3 -1 -2 -t "5.3" "34_PISTA.mp3"
id3 -1 -2 -t "5.13" "44_PISTA.mp3"
Como se realiza esa suma?, si no fuera una variable del bucle seria facil pero esa variable %%x del bucle me confunde y tambien "%m%_PISTA.mp3" esta bien asi?. El resultado es este:
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
id3: no files matching _PISTA.mp3
Presione una tecla para continuar . . .
Graciasss