Skip to content

Instantly share code, notes, and snippets.

@015shaker
015shaker / create-secret.sh
Created July 30, 2025 11:11 — forked from syntaqx/create-secret.sh
Script to create secrets on my personal API
#!/bin/bash
# Function to display usage information
usage() {
echo "Usage: $0 <secret_value>"
exit 1
}
# Check if a secret value is provided
if [ -z "$1" ]; then