bat genera automáticamente varios archivos txt al operar documentos txt. Por favor, dame el código.
@echo off&setlocal enableelayeexpansion
set/p file=Arrastre el archivo TXT para procesarlo aquí y presione Enter:
set "m=1 "&for /f "delims=" %%i in ('type %file%') do (
set /a n+=1
if !n!==9 ( set n =-1&set/a m+=1) else (
echo %%i>>archivo!m!.txt))