Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. Param([string]$fileName, [string]$find, [string]$replace)
  2.  
  3. (Get-Content $fileName -encoding UTF8) | foreach-object {
  4. $_ -replace $find, $replace
  5. } | Set-Content $fileName -encoding UTF8
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement