Eu tenho este script e posso dividir arquivos txt enormes em pequenos pedaços no formato Windows / DOS
Como posso fazer algumas alterações para dividir no formato Unix?
@echo off
setlocal enableextensions disabledelayedexpansion
set "nLines=2000"
set "line=0"
for /f %%a in ('type total.txt^|find /c /v ""') do set "fileLines=%%a"
< "total.txt" (for /l %%a in (1 1 %fileLines%) do (
set /p "data="
set /a "file=1+line/%nLines%", "line+=1"
setlocal enabledelayedexpansion
>>"pass!file!.txt" echo(!data!
endlocal
))
endlocal
Tags batch