Created
October 12, 2012 19:38
-
-
Save gerad/3881072 to your computer and use it in GitHub Desktop.
get 50 random words from the dictionary (on mac os x)
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
awk 'BEGIN {srand()} {print rand() " " $0}' /usr/share/dict/words | sort | head -50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cool, love it (n_n)