我想将我的bash脚本转换为powershell,我的脚本就在这里
sed -i "s/DS_PROP_KEYS :=.*/$DATASOURCE_KEY/OMS_Add_Tenant_Util.sql;"
答案 0 :(得分:0)
在没有编写函数的情况下,这是我见过的最接近复制sed功能的函数:
(Get-Content file.txt) | Foreach-Object {$_ -replace "^SourceRegexp$", "DestinationString"} | Set-Content file.txt