最佳答案
我正在编写一个自定义配置文件的脚本。我想在这个文件中替换字符串的多个实例,我尝试使用 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