4 lines
96 B
Bash
Executable file
4 lines
96 B
Bash
Executable file
#!/bin/bash
|
|
l=$1
|
|
[ "$l" == "" ] && l=16
|
|
tr -dc A-Za-z0-9_ < /dev/urandom | head -c ${l} | xargs
|