使用powershell替换替换

时间:2013-05-28 23:12:06

标签: unix powershell

我正在尝试编写等效的

find -name "*.xml" | xargs grep -l "Search String" 
       | xargs perl -p -i -e 's/Search String/Replace String/g'
在PowerShell中

。这就是我想出来的。

Get-ChildItem 'D:\code\cpp\FileHandlingCpp\input - Copy' -Recurse |
Select-String -SimpleMatch $src_str | 
foreach{(Get-Content $_.path) | ForEach-Object { $_ -replace $src_str, $target_str }}

我收到错误"该进程无法访问该文件,因为它正被另一个进程使用“。所以我想出了多行版本,如下所示。我现在能够替换现在的字符串,除了$ src_str中的字符串。 $ src_str有什么问题?

$src_str="<?xml version=""1.0"" encoding=""UTF-8"" standalone=""yes"" ?>"
$target_str=""
echo $src_str

foreach ($var in (Get-ChildItem 'D:\code\cpp\FileHandlingCpp\input - Copy' -Recurse 
                     | Select-String -SimpleMatch $src_str).Path) 
{    
  (Get-Content $var) | ForEach-Object { $_ -replace $src_str, $target_str }
    | Set-Content $var    
}

2 个答案:

答案 0 :(得分:6)

也许这有助于回到实现相当于Unix版本的原始目标。这基本上是等效的PowerShell版本。

$search = '<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>'
$replace = 'test'
$dir = 'D:\code\cpp\FileHandlingCpp\input - Copy'

dir -Path $dir -Recurse -Filter *.xml | ForEach-Object {
    (Get-Content -Path $_.FullName) -replace $search, $replace | 
        Set-Content $_.FullName
}

注意 - 注意重写文件时可能发生的文本文件编码更改。如果您需要使用Set-Content的{​​{1}}参数,则可以指定输出编码,例如-Encoding

答案 1 :(得分:2)

我花了一段时间才弄明白但是我明白了!

这是一个班轮。只需转到要启动的文件夹并输入。更改file.name(如果需要,使用通配符),将string1和string2更改为要搜索的文件名,并将string1替换为string2

因此,这会以递归方式搜索文件夹,并为每个文件替换另一个字符串并保存它。基本上Get-Childitem | ForEach-Object替换并保存。

全部设定!

get-childitem -include file.name -Recurse | ForEach-Object { ( Get-Content -Path $_.FullName ) -replace 'string1', 'string2' | set-content $_.fullname }