i thought most unix-like systems had it symlinked to a shell like dash. it’s what i have on my system (void linux), of course not as an interactive shell lol
i use #!/bin/sh for posix scripts and #!/usr/bin/env bash for bash scripts. #!/bin/sh works for posix scripts since even if it’s symlinked to bash, bash still supports posix features.
i thought most unix-like systems had it symlinked to a shell like
dash
. it’s what i have on my system (void linux), of course not as an interactive shell loli use
#!/bin/sh
for posix scripts and#!/usr/bin/env bash
for bash scripts.#!/bin/sh
works for posix scripts since even if it’s symlinked to bash, bash still supports posix features.