Skip to content

Instantly share code, notes, and snippets.

@gerad
Created October 12, 2012 19:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gerad/3881072 to your computer and use it in GitHub Desktop.
Save gerad/3881072 to your computer and use it in GitHub Desktop.
get 50 random words from the dictionary (on mac os x)
awk 'BEGIN {srand()} {print rand() " " $0}' /usr/share/dict/words | sort | head -50
@tblack-studio
Copy link

cool, love it (n_n)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment