Write output to a text file in PowerShell

后端 未结 3 1750
无人共我
无人共我 2020-12-01 05:00

I\'ve compared two files using the following code:

Compare-Object $(Get-Content c:\\user\\documents\\List1.txt) $(Get-Content c:\\user\\documents\\List2.txt)         


        
3条回答
  •  情书的邮戳
    2020-12-01 05:32

    Use the Out-File cmdlet

     Compare-Object ... | Out-File C:\filename.txt
    

    Optionally, add -Encoding utf8 to Out-File as the default encoding is not really ideal for many uses.

提交回复
热议问题