PowerShell PowerShelldでファイル名変更 特定の文字列を削除 コマンド dir *.* | rename-item -newname {$_.name -replace '削除文字列 ',''} 説明 '削除文字列 ' を '' にリプレイスすることで削除... 2020.09.03 PowerShell
PowerShell PowerShellでファイル分割/結合 ファイル分割 コマンド $i=0; cat .\test.log -Encoding UTF8 -ReadCount 100000 | % {$_ >test$i.log; $i++} 説明 test.log を... 2020.08.18 PowerShell