Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何在命令提示符下创建密码生成器,但它只使用数字。有没有办法让它也生成字母?例如,ASDE-DASD-DWAS-AWDS。
假设 Linux,试试这个:
cat /dev/urandom | tr -dc '0-9' | head -c8
将最后一个数字(此处为 8)更改为您想要的位数。
我不知道你用这个做什么,但这确实有效。可能有更好的方法来做你真正想做的事情。