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