linux获取随机字符串(或数字)的3种方法
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1. 获取随机8位字符串:
方法1:
# echo $RANDOM |md5sum |cut -c 1-8
返回:
471b94f2
方法2:
# openssl rand -base64 4
返回
vg3BEg==
方法3:
# cat /proc/sys/kernel/random/uuid |cut -c 1-8
返回
】ed9e032c
2.获取随机8位数字:
方法1:
# echo $RANDOM |cksum |cut -c 1-8
返回
23648321
方法2:
# openssl rand -base64 4 |cksum |cut -c 1-8
返回
38571131
方法3:
# date +%N |cut -c 1-8
返回:
69024815
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献16条内容
所有评论(0)