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