Open t4ccer opened 3 weeks ago
Use #!/usr/bin/env bash instead of #!/bin/bash. Some systems, like NixOS, do not have bash in /bin, /usr/bin/env will look up bash path instead
#!/usr/bin/env bash
#!/bin/bash
bash
/bin
/usr/bin/env
LGTM
Use
#!/usr/bin/env bash
instead of#!/bin/bash
. Some systems, like NixOS, do not havebash
in/bin
,/usr/bin/env
will look up bash path instead