Skip to content

Instantly share code, notes, and snippets.

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 substars/906187 to your computer and use it in GitHub Desktop.
Save substars/906187 to your computer and use it in GitHub Desktop.
#rails 2
w=`wc -l /usr/share/dict/words | cut -d " " -f3`; s= sed $(((RANDOM*RANDOM)%w))"q;d" /usr/share/dict/words | tr '\n' ' ' | xargs rails
# rails 3
w=`wc -l /usr/share/dict/words | cut -d " " -f3`; s= sed $(((RANDOM*RANDOM)%w))"q;d" /usr/share/dict/words | tr '\n' ' ' | xargs rails new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment