<<BACK
PowerShell

// 텍스트파일 1000줄씩 나누기
$i=0; Get-Content input.txt -ReadCount 1000 | %{ $i++; $_ | Out-File output-$i.txt; Write-Host $i }