Skip to content

Instantly share code, notes, and snippets.

@tterb
Created May 20, 2017 23:00
Show Gist options
  • Save tterb/c594c67030892e5498d1e63c9759b850 to your computer and use it in GitHub Desktop.
Save tterb/c594c67030892e5498d1e63c9759b850 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
# Returns the common lines between each of the 'n' specified files
python -c 'import sys;print " ".join(sorted(set.intersection(*[set(open(a).readl
ines()) for a in sys.argv[1:]])))'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment