PowerShell ファイル内文字列置換

PowerShellでファイルを開き、ファイル内の特定の文字列を置換するサンプルです。


・構文
$(Get-Content “置換対象のファイルパス”) -replace “置換対象”,”置換後の文字列” > 置換後のファイル内容を出力するパス

・例
$(Get-Content “C:\temp\sample.txt”) -replace “aaaaa”,”zzzzz” > c:\temp\sample_new.txt

置換前
1

置換後
2


Bookmark this on Yahoo Bookmark
Bookmark this on Google Bookmarks
Share on LinkedIn
LINEで送る
Pocket