shell-scripting-fundamentals
Installation
SKILL.md
Shell Scripting Fundamentals
Core patterns and best practices for writing robust, maintainable shell scripts.
Script Structure
Always start scripts with a proper shebang and safety options:
#!/usr/bin/env bash
set -euo pipefail
# Script description here