|
|
|
|
|
by chungy
1365 days ago
|
|
> Why not make all your shell scripts #!/bin/bash Because it's not always installed there. See, for example, FreeBSD where bash typically lives in /usr/local/bin/bash. Or in the Linux world, Nix and Guix. Use "#!/usr/bin/env bash" to account for all these possibilities. |
|