3 lines
97 B
Bash
3 lines
97 B
Bash
__lxsh_random_string() {
|
|
env LC_CTYPE=C tr -dc 'a-zA-Z0-9' </dev/urandom | head -c "${1-20}"
|
|
}
|