Skip to content

Instantly share code, notes, and snippets.

@yarick
Created July 30, 2018 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yarick/e7c842744d4631ea54f1ebb9aecda0c9 to your computer and use it in GitHub Desktop.
Save yarick/e7c842744d4631ea54f1ebb9aecda0c9 to your computer and use it in GitHub Desktop.
Python one-liner
for i in $(ls *.txt); do python -c "import sys; lines = sys.stdin.readlines(); print ''.join(sorted(set(lines)))" < $i > $i.sorted.de_dupped; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment