3

我目前正在编辑文本文件的一行。当我尝试覆盖文本文件时,我只能在文本文件中返回一行。我正在尝试使用

modifyconfig "test" "100"

config.txt

检查=0
测试=1

modifyConfig()功能:

Function modifyConfig ([string]$key, [int]$value){
    $path = "D:\RenameScript\config.txt"

    ((Get-Content $path) | ForEach-Object {
        Write-Host $_
        # If '=' is found, check key
        if ($_.Contains("=")){
            # If key matches, replace old value with new value and break out of loop
            $pos = $_.IndexOf("=")
            $checkKey = $_.Substring(0, $pos)
            if ($checkKey -eq $key){
                $oldValue = $_.Substring($pos+1)
                Write-Host 'Key: ' $checkKey
                Write-Host 'Old Value: ' $oldValue
                $_.replace($oldValue,$value)
                Write-Host "Result:" $_
            }
        } else {
            # Do nothing
        }
    }) | Set-Content ($path)
}

我收到的结果config.txt

测试=100

我错过了“检查= 0”。

我错过了什么?

4

2 回答 2

4

$_.replace($oldValue,$value)在您最里面的条件替换$oldValue$value然后打印修改后的字符串,但是您没有代码打印不匹配的字符串。因此,只有修改后的字符串被写回$path.

换行

# Do nothing

$_

并在内部条件中添加一个else带有 a 的分支。$_

或者您可以分配$_给另一个变量并像这样修改您的代码:

Foreach-Object {
    $line = $_
    if ($line -like "*=*") {
        $arr = $line -split "=", 2
        if ($arr[0].Trim() -eq $key) {
            $arr[1] = $value
            $line = $arr -join "="
        }
    }
    $line
}
于 2013-06-14T00:58:12.070 回答
1

或一个班轮..(不完全是针尖的答案,而是问题标题)

(get-content $influxconf | foreach-object {$_ -replace "# auth-enabled = false" , "auth-enabled = true" }) | Set-Content $influxconf

于 2017-07-10T01:37:17.103 回答