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