Created
November 17, 2015 02:29
-
-
Save arebee/6d105da5fdcfcc74160b to your computer and use it in GitHub Desktop.
PowerShell script to save as UTF-8 without a BOM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gci . -recurse -filter *.ps* | % { | |
$MyFile = gc $_.Fullname -raw | |
$MyPath = $_.Fullname | |
[System.IO.File]::WriteAllLines($MyPath, $MyFile, [System.Text.UTF8Encoding]($False)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
use
$MyFile = gc -raw -Encoding utf8 $_.Fullname
instead ,and note if you don't properly set encoding via-Encoding utf8 for Get-Content,some characters would be garbled.