方法1:使用/dev/urandom
[root@localhost shell]# tr -dc "0-9" < /dev/urandom | head -c 10 #生成10個數字 5798734885[root@localhost shell]# [root@localhost shell]# [root@localhost shell]# tr -dc "a-z" < /dev/urandom | head -c 10 #生成10個小寫字符 xxcudpzyfu[root@localhost shell]# [root@localhost shell]# tr -dc "A-Z" < /dev/urandom | head -c 10 #生成10個大寫字符 XFDBEFCDKV[root@localhost shell]# [root@localhost shell]# tr -dc "0-9,a-z" < /dev/urandom | head -c 10 #生成數字和字符的組合 ryjhjhnpyd[root@localhost shell]#
方法二:使用date +%s
隨機生成一串數字
root@vmUbu:/home/dell/shell# date +%s |cksum |cut -d " " -f 1 1934689009
擴展:隨機生成10以內的數字
root@vmUbu:/home/dell/shell# echo "`date +%s |cksum |cut -d " " -f 1`%100" |bc 81
2.隨機生成一串小寫字母
root@vmUbu:/home/dell/shell# date +%s| md5sum | tr -dc "a-z" |head -c 10 cdacabaebroot@vmUbu:/home/dell/shell#
3.隨機生成數字與字母的組合
root@vmUbu:/home/dell/shell# date +%s| md5sum | head -c 10 67e
方法三:使用openssl rand
root@vmUbu:/home/dell/shell# openssl rand -base64 40 C6S7WofBX3S4imkZb9mHDkcYWZyreae0lAUqPLPcaeX+KF8HaKXOrw==
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。