7 lines
170 B
Bash
7 lines
170 B
Bash
#!/usr/bin/env bash
|
|
# Generates a random 24-character key suitable for RC_DES_KEY in .env.
|
|
set -euo pipefail
|
|
|
|
LC_ALL=C tr -dc 'A-Za-z0-9' </dev/urandom | head -c 24
|
|
echo
|