Last active
December 10, 2015 12:18
-
-
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.
This file contains hidden or 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
#!/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