Powershell: Setting Encoding for Get-Content Pipeline

后端 未结 4 1657
说谎
说谎 2020-12-14 06:07

I have a file saved as UCS-2 Little Endian I want to change the encoding so I ran the following code:

cat tmp.log -encoding UTF8 > new.log
4条回答
  •  太阳男子
    2020-12-14 06:50

    If you are reading an XML file, here's an even better way that adapts to the encoding of your XML file:

    $xml = New-Object -Typename XML
    $xml.load('foo.xml')
    

提交回复
热议问题