🔧 refactor: Use #!/usr/bin/env bash in all shell scripts (#16)

This commit refactors all the shell scripts to use `#!/usr/bin/env bash` instead of `#!/bin/bash`. This change ensures that the scripts will run with the system's default Bash interpreter, even if it is not located at the standard `/bin/bash` path.
This commit is contained in:
Christopher
2024-10-23 13:32:15 -05:00
committed by GitHub
parent 337227be4a
commit 222e6af258
61 changed files with 61 additions and 61 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
MESSAGE="Made by BigBearTechWorld"