码迷,mamicode.com
首页 > 其他好文 > 详细

使用一系列命令生成字母数字符号组合

时间:2019-10-09 16:02:09      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:uuid   idg   md5   dev   and   pen   大小   Opens   特殊   

随机生成10位数字:
date +%N%N | cut -c ‘1-10‘
uuidgen | tr ‘a-z-‘ ‘0-9‘ | cut -c 1-10
随机生成10位字母:
date +%N%N | cut -c 1-10 | tr ‘0-9‘ ‘a-z‘
uuidgen | tr ‘0-9-‘ ‘a-z‘ | cut -c 1-10
openssl rand -hex 10 | tr ‘0-9‘ ‘a-z‘ | cut -c 1-10
cat /dev/urandom | tr -dc "a-zA-Z" | fold -w 10 | head -1 (随机生成10位大小字母)
随机生成10位字母+数字的混合:
uuidgen | tr -d ‘-‘ | cut -c 1-10
cat /dev/urandom | head -n 10 | md5sum | cut -c 1-10
openssl rand -hex 10 | tail -c 11
随机生成10位字母+数字的混合+特殊符号:
cat /dev/urandom | tr -dc "a-zA-Z0-9_+\~\!\@\#\$\%\^\&\*\(\)\\\/\`\-\_\=\+\-"| fold -w 10 | head -1

使用一系列命令生成字母数字符号组合

标签:uuid   idg   md5   dev   and   pen   大小   Opens   特殊   

原文地址:https://www.cnblogs.com/lyqlyqlyq/p/11641683.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!