如何将bash脚本转换为powershell我的代码在这里

时间:2017-06-16 03:43:28

标签: powershell

我想将我的bash脚本转换为powershell,我的脚本就在这里

sed -i "s/DS_PROP_KEYS :=.*/$DATASOURCE_KEY/OMS_Add_Tenant_Util.sql;"

1 个答案:

答案 0 :(得分:0)

在没有编写函数的情况下,这是我见过的最接近复制sed功能的函数:

(Get-Content file.txt) | Foreach-Object {$_ -replace "^SourceRegexp$", "DestinationString"} | Set-Content file.txt