5

我正在开发一个 PowerShell 脚本,该脚本在给定的 DIRECTORY 中查找所有带有 PATTERN 的文件,打印出突出显示 PATTERN 的文档的相关行,然后用提供的 REPLACE 字替换 PATTERN,然后将文件保存回来。所以它实际上编辑了文件。

除了我不能让它改变文件,因为 Windows 抱怨文件已经打开。我尝试了几种方法来解决这个问题,但一直遇到这个问题。也许有人可以提供帮助:

param(
    [string] $pattern = ""
    ,[string] $replace = ""
    ,[string] $directory ="."
    ,[switch] $recurse = $false
    ,[switch] $caseSensitive = $false)

if($pattern -eq $null -or $pattern -eq "")
{
    Write-Error "Please provide a search pattern." ; return
}

if($directory -eq $null -or $directory -eq "")
{
    Write-Error "Please provide a directory." ; return
}

if($replace -eq $null -or $replace -eq "")
{
    Write-Error "Please provide a string to replace." ; return
}

$regexPattern = $pattern
if($caseSensitive -eq $false) { $regexPattern = "(?i)$regexPattern" }
$regex = New-Object System.Text.RegularExpressions.Regex $regexPattern

function Write-HostAndHighlightPattern([string] $inputText)
{
    $index = 0
    $length = $inputText.Length
    while($index -lt $length)
    {
        $match = $regex.Match($inputText, $index)
        if($match.Success -and $match.Length -gt 0)
        {
            Write-Host $inputText.SubString($index, $match.Index) -nonewline
            Write-Host $match.Value.ToString() -ForegroundColor Red -nonewline
            $index = $match.Index + $match.Length
        }
        else
        {
            Write-Host $inputText.SubString($index) -nonewline
            $index = $inputText.Length
        }
    }
}

Get-ChildItem $directory -recurse:$recurse |
    Select-String -caseSensitive:$caseSensitive -pattern:$pattern |    
    foreach {
        $file = ($directory + $_.FileName)
        Write-Host "$($_.FileName)($($_.LineNumber)): " -nonewline
        Write-HostAndHighlightPattern $_.Line
        %{ Set-Content $file ((Get-Content $file) -replace ([Regex]::Escape("[$pattern]")),"[$replace]")}
        Write-Host "`n"
        Write-Host "Processed: $($file)"
    }

问题位于最后的代码块中,就在 Get-ChildItem 调用处。当然,由于我试图解决问题然后停止,该块中的一些代码现在有点损坏,但请记住脚本那部分的意图。我想获取内容,替换单词,然后将更改后的文本保存回我从中获取的文件。

任何帮助都将不胜感激。

4

3 回答 3

6

删除了我之前的答案,将其替换为:

Get-ChildItem $directory -recurse:$recurse
foreach {        
    $file = ($directory + $_.FileName)

    (Get-Content $file) | Foreach-object {
        $_ -replace ([Regex]::Escape("[$pattern]")),"[$replace]")
    } | Set-Content $file
}

笔记:

  • 括号周围Get-Content是为了确保文件被一口气吞掉(并因此关闭)。
  • 到后续命令的管道而不是内联。
  • 您的一些命令已被删除,以确保它是一个简单的测试。
于 2012-04-20T06:08:36.640 回答
0

好吧,我终于坐下来,在 PowerShell 中按顺序输入所有内容,然后用它来制作我的脚本。

其实很简单;

$items = Get-ChildItem $directory -recurse:$recurse
$items |
foreach {
    $file = $_.FullName
    $content = get-content $file
    $newContent = $content -replace $pattern, $replace
    Set-Content $file $newcontent
}

感谢您的所有帮助。

于 2012-04-22T18:52:42.197 回答
0

只是一个建议,但您可以尝试查看参数代码块的文档。有一种更有效的方法可以确保在需要时输入参数,并在用户不需要时抛出错误消息。

About_throw:http ://technet.microsoft.com/en-us/library/dd819510.aspx About_functions_advanced_pa​​rameters :http ://technet.microsoft.com/en-us/library/dd347600.aspx

然后关于一直使用 Write-Host: http: //powershell.com/cs/blogs/donjones/archive/2012/04/06/2012-scripting-games-commentary-stop-using-write-host.aspx

于 2012-04-20T05:01:39.893 回答