txt 파일 자르기 (Powershell)
2024. 6. 4. 11:04ㆍ카테고리 없음
https://gildongmoo92.tistory.com/98
$i=0; Get-Content .\test.txt -ReadCount 1000 | %{ $i++; $_ | Out-File output-$i.txt; Write-Host $i }
2024. 6. 4. 11:04ㆍ카테고리 없음
https://gildongmoo92.tistory.com/98
$i=0; Get-Content .\test.txt -ReadCount 1000 | %{ $i++; $_ | Out-File output-$i.txt; Write-Host $i }