CSV中的Powershell比较列

时间:2019-06-27 13:56:07

标签: powershell-3.0

我正在尝试比较两个csv文件。我想检查是否有名称相同但内容不同的对象,但我不知道该怎么做。你能帮我吗?

$File1 = Import-Csv -Path "C:\Users\PM\Desktop\Migration\file1.csv"
$File2 = Import-Csv -Path "C:\Users\PM\Desktop\Migration\file2.csv"
$Tot_File = $File1 + $File2
Foreach($file in $Tot_File)
{
   $ident = $file.nom +  $User.prenom + $address.address
   Write-Host $file.Name -ForegroundColor White
   Write-Host $file.LastName -ForegroundColor DarkCyan
   Write-Host $file.Address -ForegroundColor DarkYellow
}

在输出中,我有重复的对象。在名称方面,我不希望加倍。

0 个答案:

没有答案