Diff with PowerShell
To compare the content of 2 files using PowerShell, similar to the diff command in Linux
Compare-Object -ReferenceObject (Get-Content $fileOne) -DifferenceObject (Get-Content $fileTwo)
Compare-Object -ReferenceObject (Get-Content $fileOne) -DifferenceObject (Get-Content $fileTwo)
Comments
Post a Comment