📜  cli 生成随机字符串 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:43.840000             🧑  作者: Mango

代码示例1
#purely random 12 character string
openssl rand 12

# more useful random 12 character strings
openssl rand -base64 12

# random hex-code sequence
openssl rand -hex 12