mkpasswd() {
LEN=${1:-30}
tr -cd ' -~' < /dev/urandom | fold -w $LEN | sed 1q
}
mkpasswd2() {
base64 < /dev/urandom | fold -w $LEN | sed 1q