Powershell:设置Get-Content Pipeline的编码

前端之家收集整理的这篇文章主要介绍了Powershell:设置Get-Content Pipeline的编码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个文件保存为UCS-2 Little Endian我想更改编码,所以我运行以下代码
cat tmp.log -encoding UTF8 > new.log

生成文件仍然在UCS-2小端。这是因为管道总是以这种格式吗?有没有一个简单的方法来管道这个到一个新的文件作为UTF8?

如建议 here
Get-Content tmp.log | Out-File -Encoding UTF8 new.log
原文链接:https://www.f2er.com/javaschema/282733.html

猜你在找的设计模式相关文章