我正在编写用于自定义配置文件的脚本。我想替换该文件中的多个字符串实例,并且尝试使用PowerShell来完成这项工作。
对于单个替换它可以很好地工作,但是进行多次替换非常慢,因为每次必须重新解析整个文件时,此文件非常大。该脚本如下所示:
$original_file = 'path\filename.abc'
$destination_file = 'path\filename.abc.new'
(Get-Content $original_file) | Foreach-Object {
$_ -replace 'something1', 'something1new'
} | Set-Content $destination_file
我想要这样的东西,但是我不知道该怎么写:
$original_file = 'path\filename.abc'
$destination_file = 'path\filename.abc.new'
(Get-Content $original_file) | Foreach-Object {
$_ -replace 'something1', 'something1aa'
$_ -replace 'something2', 'something2bb'
$_ -replace 'something3', 'something3cc'
$_ -replace 'something4', 'something4dd'
$_ -replace 'something5', 'something5dsf'
$_ -replace 'something6', 'something6dfsfds'
} | Set-Content $destination_file