Skip to content

Instantly share code, notes, and snippets.

@tommorris
Created August 30, 2008 14:36
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 tommorris/8113 to your computer and use it in GitHub Desktop.
Save tommorris/8113 to your computer and use it in GitHub Desktop.
A one-liner to clean up some messy text files
puts File.open("/Users/tommorris/tmp/latin.txt").readlines.collect {|l| l.strip }.uniq.sort * "\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment