Skip to content

Instantly share code, notes, and snippets.

@jappy
Created March 11, 2012 07:41
Show Gist options
  • Save jappy/2015460 to your computer and use it in GitHub Desktop.
Save jappy/2015460 to your computer and use it in GitHub Desktop.
unix command to sort words into rhyming order
tr 'A-Z' 'a-z' < filename.txt | tr -sc 'a-z' '\n' | rev | sort | uniq | sort -d | rev | less
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment