下記のコマンドを実行するとテキストファイルを分割できます。
例)「a1.txt」ファイルを100行単位に分割して「bbb_n.txt」ファイルを作る
※nには連番が振られます
$i=0; Get-Content a1.txt -ReadCount (100) | % {$_ | Out-File “bbb_$i.txt” -Encoding UTF8 -Append; $i++}
【動作確認環境】
OS:Windows10 Pro 20H2
PowerShell:5.1.19041.906