10 lines
110 B
Bash
Executable File
10 lines
110 B
Bash
Executable File
#!/usr/bin/env zsh
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
length=32
|
|
else
|
|
length="$1"
|
|
fi
|
|
|
|
openssl rand -base64 "$length"
|