Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

powershell - Removing similar lines from two files

I'm trying to find a PowerShell solution to remove lines from file A that are similar in File B. Compare-Object $A $B does the comparing, but how to I go about deleting the items?

File A

yahoo.com
google.com
stackoverflow.com
facebook.com
twitter.com

File B

stackoverflow.com
facebook.com

After Compare: File A

yahoo.com
google.com
twitter.com
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can remove the contents of file B from file A with something like this:

$ref = Get-Content 'C:pathofileB.txt'

(Get-Content 'C:pathofileA.txt') |
  ? { $ref -notcontains $_ } |
  Set-Content 'C:pathofileA.txt'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...