zoukankan      html  css  js  c++  java
  • shell生成随机数的方法

    方法1:使用/dev/urandom

    [root@localhost shell]# tr -dc "0-9" < /dev/urandom | head -c 10        #生成10个数字

    5798734885

    [root@localhost shell]# 

    [root@localhost shell]# tr -dc "a-z" < /dev/urandom | head -c 10        #生成10个小写字符

    xxcudpzyfu

    [root@localhost shell]# tr -dc "A-Z" < /dev/urandom | head -c 10        #生成10个大写字符

    XFDBEFCDKV

    [root@localhost shell]# tr -dc "0-9,a-z" < /dev/urandom | head -c 10  #生成数字和字符的组合

    ryjhjhnpyd

    方法二:使用date +%s

    1.随机生成一串数字

    [root@localhost shell]# date +%s |cksum |cut -d " " -f 1 

    1934689009

    2.扩展:随机生成100以内的数字

    [root@localhost shell]# echo "`date +%s |cksum |cut -d " " -f 1`%100" |bc

    81

    3.随机生成一串小写字母

    [root@localhost shell]# date +%s| md5sum | tr -dc "a-z" |head -c 10

    cdacabaebroot@vmUbu:/home/dell/shell#

    4.随机生成数字与字母的组合

    [root@localhost shell]# date +%s| md5sum | head -c 10

    67e

    方法三:使用openssl rand

    [root@localhost shell]# openssl rand -base64  40

    C6S7WofBX3S4imkZb9mHDkcYWZyreae0lAUqPLPcaeX+KF8Ha

  • 相关阅读:
    js弹出DIV层
    .net 生成静态页面
    新开博客
    随机生成验证码
    ASP.NET错误处理方法总结
    webgis
    看樱花
    今天转载的笑话,挺好笑呵
    用Tomcat插件在Eclipse上搭建可跟踪调试的J2EE WEB开发环境
    关于JSTL的简单说明
  • 原文地址:https://www.cnblogs.com/5945yang/p/10837974.html
Copyright © 2011-2022 走看看