Created
March 19, 2014 17:32
-
-
Save nmische/9646977 to your computer and use it in GitHub Desktop.
One liner to remove items in dupes.txt from full.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
comm -23i <(cat full.txt | sort | uniq -i) <(cat dupes.txt | sort | uniq -i) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment