我有一个ini文件:
number=1
problem=4
issue=2
test=7
number=2
problem=5
issue=3
test=8
键重复但值不同。
如何使用powershell删除每个加倍的键?
我的最终ini文件应如下所示:
number=1
problem=4
issue=2
test=7
谢谢!
更新:2018年9月10日(抱歉,我假期中)
我终于做到了!它的工作原理绝对完美,谢谢大家,特别感谢@Richard Siddaway
@Theo你是对的。我错过了[章节],并添加了它们以及第二个程序的下一部分,该程序应该能够读取ini文件
这是我的代码:
#merge two files
$files = Get-ChildItem "D:\all"
foreach ($file in $files) {
$name = dir $file.FullName | select -ExpandProperty Name
$ReferenceObject = Get-Content D:\File.ini
$DifferenceObject = Get-Content $file.FullName
Compare-Object -ReferenceObject $ReferenceObject -DifferenceObject $DifferenceObject -PassThru | Out-File ('D:\output\' + $name)
# filter Date an Number
$fileContent = Get-Content ('D:\output\' + $name)
# iterate over lines
foreach($line in $fileContent) {
#add "=" to [section]
if($line.StartsWith('[')) {
$newline = ($line + '=')
$newline | Add-Content ('D:\output2\' + $name)
}
# filter lines beginning with 'Date, ...'
elseif((-not $line.StartsWith('Date')) -and (-not $line.StartsWith('Number')) -and (-not $line.StartsWith('Date2'))) {
# output lines to new file
$line | Add-Content ('D:\output2\' + $name)
}
}
#remove duplicates
$fileContent = Get-Content ('D:\output2\' + $name)
$unqkeys = [ordered]@{}
foreach ($line in $fileContent){
if ($line -ne '') {
$a = $line -split '='
if (-not $unqkeys[$($a[0].Trim())]){
$unqkeys += @{$a[0].Trim() = $a[1].Trim()}
}
}
}
$unqkeys.GetEnumerator() |
foreach {
Out-File -FilePath ('D:\output3\' + $name) -InputObject "$($_.key)=$($_.value)" -Append
}
# add file location to [section]
$fileContent = Get-Content ('D:\output3\' + $name)
foreach($line in $fileContent) {
# filter for section
if($line.StartsWith('[')) {
# output lines to new file
$newline = $line -replace "[[]", "|" -replace "]=", "]"
$linemodif = ("[C:\mypath\File.ini" + $newline)
$linemodif | Add-Content ('D:\output4\' + $name)
}else {
$line | Add-Content ('D:\output4\' + $name)
}
}
}
#Move ouput to solution
Get-ChildItem -Path "D:\output4\*.*" -Recurse | Move-Item -Destination "D:\solution" -force
#delete every single output
Remove-Item -Path D:\output\*.*
Remove-Item -Path D:\output2\*.*
Remove-Item -Path D:\output3\*.*
Remove-Item -Path D:\output4\*.*
这是合并后我的ini文件:
[SECTION1]
Tester=5
Magnet=2
Number=3459353484
Date=01/01/2018 11:00:00
Problem=
Issue=
[SECTION2]
Progress=0
Tester=4
Magnet=1
Number=0
Date=01/01/1999
这是我的结果:
[C:\mypath\File.ini|SECTION1]
Tester=5
Magnet=2
Problem=
Issue=
[C:\mypath\File.ini|SECTION2]
Progress=0
如您所见,就像@Paxz所说的那样,它看起来仍然像是“只是将一些随机片段粘贴在一起”。我已经完成并完全满意它,因为它确实可以达到预期的效果,但是我很清楚我的脚本不是很干净,也不是一个好的解决方案。特别是在我的输出中:/也许有人暗示我下次需要改进?也许我可以以某种方式将每个输出保存在变量中?并且在我的部分中添加了“ =”,以便能够使用Richards脚本...
答案 0 :(得分:0)
尝试一下
if (Test-Path -Path c:\test\new.ini) {
Remove-Item -Path c:\test\new.ini
}
$unqkeys = [ordered]@{}
$lines = Get-Content -Path C:\test\t1.ini
foreach ($line in $lines){
if ($line -ne '') {
$a = $line -split '='
if (-not $unqkeys[$($a[0].Trim())]){
$unqkeys += @{$a[0].Trim() = $a[1].Trim()}
}
}
}
$unqkeys.GetEnumerator() |
foreach {
Out-File -FilePath C:\test\new.ini -InputObject "$($_.key)=$($_.value)" -Append
}
Get-Content -Path C:\test\new.ini
我正在使用有序哈希表来保存唯一键-文件中找到的第一个键。最后,将数据写回到新文件中。您应该可以修改它以满足您的需求