「Windows/powershell」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→macでスクリプト実行) |
(→macでスクリプト実行) |
||
行4: | 行4: | ||
macであれば、powershell-x.x.x-osx-x64.pkg をDL | macであれば、powershell-x.x.x-osx-x64.pkg をDL | ||
− | == | + | ==macでpowershell実行== |
$ /usr/local/bin/pwsh /tmp/hoge.ps1 | $ /usr/local/bin/pwsh /tmp/hoge.ps1 | ||
2021年8月10日 (火) 22:35時点における版
powershellインストール
macであれば、powershell-x.x.x-osx-x64.pkg をDL
macでpowershell実行
$ /usr/local/bin/pwsh /tmp/hoge.ps1
/tmp/hoge.ps1
echo 'hoge'
テキスト文置換
aaaをcccへ置換
$data = Get-Content hoge.txt | % { $_ -replace "aaa", "ccc" } $data | Out-File hoge.txt