powershell でutf8とShift_JIS(SJIS、UTF8)の文字コードを相互に変換

バッチファイル

powershell -command "Get-Content  -Encoding Shift-JIS y:/wordlst.txt | Out-File y:/word.txt  -Encoding utf8" 

powershell -command "Get-Content  -Encoding utf8 y:/wordlst.txt | Out-File y:/word.txt  -Encoding Shift-JIS  " 

pwsh -command "Get-Content  -Encoding Shift-JIS y:/wordlst.txt | Out-File y:/word.txt  -Encoding utf8NoBOM " 

bat,PowerShell 

Posted by eightban