Skip to content

Instantly share code, notes, and snippets.

@romanows
Last active December 10, 2015 12:18
Show Gist options
  • Save romanows/4432818 to your computer and use it in GitHub Desktop.
Save romanows/4432818 to your computer and use it in GitHub Desktop.
Bash script to generate 3 random words from the dictionary in Ubuntu 12.04. Useful for passwords. Requires the "randomize-lines" package.
#!/bin/sh
rl -r -c 3 /usr/share/dict/web2 | tr '\n' ' '; echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment