Advertisement
dwhitzzz

Psw generator

Jul 9th, 2019
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.21 KB | None | 0 0
  1. # psw generator
  2. # Change the head count to generate number of passwords.
  3. # more info at https://stackoverflow.com/a/13134698/5533075
  4. cat /dev/urandom | tr -dc 'a-zA-Z0-9-!@#$%^&*()_+~' | fold -w 10 | head -n 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement