shell-portability

Installation
SKILL.md

Shell Script Portability

Techniques for writing shell scripts that work across different platforms and environments.

Shebang Selection

Bash Scripts

#!/usr/bin/env bash
# Most portable for bash scripts
# Works on Linux, macOS, BSD

POSIX Shell Scripts

Installs
36
GitHub Stars
173
First Seen
Jan 22, 2026
shell-portability — thebushidocollective/han