原创 命令行製作隨機密碼

命令行製作隨機密碼#1date +%s | sha256sum | base64 | head -c 32; echo使用 SHA 來哈希日期,輸出頭 32 個字節。#2< /dev/urandom tr -dc _A-Z-a-z-0-9