sh SH:用于制作随机密码的功能

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh SH:用于制作随机密码的功能相关的知识,希望对你有一定的参考价值。

## put this into your ~/.bashrc file and make random passwords as needed.
##
## usage: 
##   mkpw <length>
##
## ex: for for i in $(seq 5);do mkpw 10 ; done 
## Rw3QPaeUM2
## qPgQnx5K38
## wZnOZjQsdN
## H0tcr1tVrQ
## w3xnyY00lp

mkpw()
{
    [ $# -eq 0 ] && len=16 || len="$1"
    cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w "$len" | head -1
}

以上是关于sh SH:用于制作随机密码的功能的主要内容,如果未能解决你的问题,请参考以下文章

随机定时修改密码change_passwd.sh

sh 创建MySQL数据库,dito用户和随机生成的密码。

sh 用于在脚本中交互使用kinit的函数,为错误输入的密码提供重试循环。

如何正常在 git 操作的 sh 中随机运行 for 循环?

sh 用于从ubuntu构建安全的mysql服务器的shell脚本。 (必须以root身份运行并准备使用大量密码)

sh 将SSH密钥添加到代理。此步骤也可用于避免在执行git push / pull时输入SSH密码