shell脚本随机生成密码
[root@harbor tools]# cat test.sh #!/bin/bash # 生成随机密码 password=$(openssl rand -base64 12) # 输出生成的密码 echo "生成的密码为: $password"
[root@harbor tools]# cat test.sh #!/bin/bash # 生成随机密码 password=$(openssl rand -base64 12) # 输出生成的密码 echo "生成的密码为: $password"