Linux 生成随机密码
十月 31, 2011 | In: 技术
Linux shell 随机密码生成简单方法
date +%s | md5sum | base64 | head -c 12;echo openssl rand -base64 32 tr -dc a-zA-Z0-9_ < /dev/urandom | head -c 12 | xargs
Simplicity, The soul of design
十月 31, 2011 | In: 技术
Linux shell 随机密码生成简单方法
date +%s | md5sum | base64 | head -c 12;echo openssl rand -base64 32 tr -dc a-zA-Z0-9_ < /dev/urandom | head -c 12 | xargs