I'm using OpenBSD and, although the documentation is clear about creating a link to /bin/bash, I think it would be "better", in the sense more portable, if you simply replaced "#!/bin/bash" with "#!/usr/bin/env bash" in your scripts.
On my system, I just did:
# find ./ -type f -exec sed -i -e 's;#! */bin/bash;#!/usr/bin/env bash;' {} \;
Hi,
I'm using OpenBSD and, although the documentation is clear about creating a link to /bin/bash, I think it would be "better", in the sense more portable, if you simply replaced "#!/bin/bash" with "#!/usr/bin/env bash" in your scripts.
On my system, I just did:
and could run:
Anyway, thanks for all your work :)