Shell-shell 生成随机字母数字组合的问题

发布于 2016-12-16 19:44:31 字数 243 浏览 1590 评论 3

之前在社区里看到了一个类似的帖子这个脚本是如何产生随机密码的?
自己想到了一个其他的实现方式:

head -c 500 /dev/urandom | sed 's/[^a-zA-Z0-9]//g' | head -c 16; echo

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夜无邪 2017-10-19 06:18:42

 $ tr -dc '0-9a-zA-Z' < /dev/urandom | fold -w 16 | head -10
3zf2TnCa4AyoxkBV
wGWgUrLFSHh8y4gZ
DVCRBHvCVh194FO3
yJ3xToa1LptXVnNG
SYQ8vR1PRUlxeSSr
upCHmUAuZMyaAiQH
QvSVaTEhaxdpTjLH
bt9W3Gw1lIqZRKZA
nCcF3X4O6jJwX6Yx
UvNjSFGbesC5IlCY

泛泛之交 2017-10-04 13:34:00

评论写不下,直接贴出来,供浏览的人直接学习

Within a bracket expression, a range expression consists of two characters separated by a hyphen. It matches any single character that sorts between the two characters, inclusive, using the locale’s collating sequence and character set.For example, in the default C locale, [a-d] is equivalent to [abcd].Many locales sort characters in dictionary order, and in these locales [a-d] is typically not equivalent to [abcd]; it might be equivalent to [aBbCcDd],for example.To obtain the traditional interpretation of bracket expressions, you can use the C locale by setting the LC_ALL environment variable to the value C.

夜无邪 2017-06-23 06:05:54

需要在调用sed前传入环境变量LANG=C,否则[a-zA-Z0-9]表示的并不仅仅是字母数字。

head -c 500 /dev/urandom |
LANG=C sed 's/[^a-zA-Z0-9]//g' |
head -c 16

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文