added a script to generate passwords

This commit is contained in:
Bachir Soussi Chiadmi 2018-04-10 21:14:40 +02:00
parent a7fa31962e
commit 3f5967b5bb

4
bin/genpass.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/sh
_pass="$(< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c12)"
echo "$_pass"