random password generator in bash
Here is small but powerfull aliast for .bashrc file. It will generate strong passwords. Just put this in Your .bashrc file: genpasswd() { local l=$1 [ “$l” == “” ] && l=20 tr -dc A-Za-z0-9_ < /dev/urandom | head -c …