4 lines
88 B
Bash
4 lines
88 B
Bash
mkpasswd() {
|
|
LEN=${1:-30}
|
|
tr -cd ' -~' < /dev/urandom | fold -w $LEN | sed 1q
|
|
}
|