PowerShell PowerShellでファイル分割/結合 ファイル分割 コマンド $i=0; cat .\test.log -Encoding UTF8 -ReadCount 100000 | % {$_ >test$i.log; $i++} 説明 test.log を... 2020.08.18 PowerShell