生成32位随机密码,只包含字母和数字:

 

echo `openssl rand -base64 50  | tr -dc A-Z-a-z-0-9 | head -c${1:-32}`

#############################
date +%s | sha256sum | base64 | head -c 32 ;

 

相关文章:

  • 2022-01-30
  • 2021-12-20
  • 2022-12-23
  • 2022-12-23
  • 2021-07-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-06
  • 2021-09-09
相关资源
相似解决方案