5 lines
75 B
Bash
5 lines
75 B
Bash
|
#!/usr/bin/env sh
|
||
|
set -ou pipefail
|
||
|
|
||
|
cat /dev/urandom | base64 | head -c 64
|