Powershell:始终生成null文件(Compare-Object的输出)
此问题最受欢迎的答案涉及以下Windows PowerShell代码(编辑以修复错误):
$file1 = Get-Content C:\temp\file1.txt $file2 = Get-Content C:\temp\file2.txt $Diff = Compare-Object $File1 $File2 $LeftSide = ($Diff | Where-Object {$_.SideIndicator -eq '<='}).InputObject $LeftSide | Set-Content C:\temp\file3.txt
我总是得到一个零字节文件作为输出,即使我删除$ Diff行。
为什么输出文件总是为null,如何修复?
米琪卡哇伊