Last one before I get back to work. We have all experienced this at least once.



Blog Posts - Contextual Links - Hardlinks on 600+ Blog Network
genpasswd() {
local l=$1
[ "$l" == "" ] && l=20
tr -dc A-Za-z0-9 < /dev/urandom | head -c ${l} | xargs
}


Comment