随机字符串常用于创建随机账号或密码,Linux 可用以下方法生成随机字符串。

1.生成由大写字母组

成的随机字符串:

$ head /dev/urandom | tr -dc A-Z | head -c 20

NRXFYZRTUEDXTVPJAYJW

2.生成由小写字母组成的随机字符串:

$ head /dev/urandom | tr -dc a-z | head -c 20

rizsfwebsmfowsogsqfi

3.生成由纯数字组成的随机字符串:

$ head /dev/urandom | tr -dc 0-9 | head -c 20

06983118429648544871

4.生成由大写字母、小写字母、数字组成的随机字符串:

$ head /dev/urandom | tr -dc A-Za-z0-9 | head -c 30

kFac0BEcbWS9eTZWZwn52ps53kGp6q

5.写成 Shell 脚本:

#!/bin/bash


pass=$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 30)

echo $pass

References

最后修改:2024 年 09 月 05 日
如果觉得我的文章对你有用,请随意赞赏