5 lines
87 B
Bash
Executable File
5 lines
87 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
LC_ALL=C
|
|
openssl rand -base64 192 | tr -dc 'A-Za-z0-9' | cut -c1-192
|