Windows/powershell
提供: 初心者エンジニアの簡易メモ
powershellインストール
macであれば、powershell-x.x.x-osx-x64.pkg をDL
テキスト文置換
aaaをcccへ置換
$data = Get-Content hoge.txt | % { $_ -replace "aaa", "ccc" } $data | Out-File hoge.txt
macであれば、powershell-x.x.x-osx-x64.pkg をDL
aaaをcccへ置換
$data = Get-Content hoge.txt | % { $_ -replace "aaa", "ccc" } $data | Out-File hoge.txt