shell-safety
Installation
SKILL.md
Shell safety
Apply to every shell script written or modified.
Boilerplate every script needs
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'
Apply to every shell script written or modified.
#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'