Shell Script Generator

Generate a bash boilerplate script with the patterns you need.

Shown in the header comment of the generated script.

Patterns
Bash script
#!/usr/bin/env bash

# my-script
# A useful bash script.

# Fail on error, undefined variable, and pipe failure
set -euo pipefail

# --- Main script ---
echo "Running my-script..."