我希望使用 PowerShell 快速协调大量交易估值。
例子:
File_1 - Trade_id = 123456, 789101 Valuation = 10, 20
File_2 - Trade_id = 123456, 789101 Valuation = 10, 30
我的问题是如何Trade_id
在文本文件中显示估值的差异?
我在想这样的事情-
Compare-Object $(Get-Content H:\File_1.txt) $(Get-Content H:\File_2.txt) | Out-File H:\datarecon.txt
但是,结果的格式并不是我想要的。我希望命令通过Trade_id
不管Trade_id
s 在每个文件中的位置来评估差异并提供差异。