Portable bash shebang using env, and why sh is not bash.
#!/usr/bin/env bash
env resolves bash from PATH, which is more portable than a hardcoded interpreter path. sh is not bash.
env
bash
PATH
sh