Last active
June 10, 2016 09:15
-
-
Save superdaigo/989963b2b49eedbe4a727c344c6dc664 to your computer and use it in GitHub Desktop.
One Liner: Generate Random Password and Copy to Clipboard (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
$ python -c 'import random,string,sys;sys.stdout.write("".join(random.sample(string.printable[:94],16)))' | pbcopy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment