your shell scripts have no shebang line, such as `#!/bin/bash` or `#!/bin/sh` I wonder whether this is intentional, but in any case I would recommend making the shell expected to run the script explicit by adding a shebang.
your shell scripts have no shebang line, such as
#!/bin/bashor#!/bin/shI wonder whether this is intentional, but in any case I would recommend making the shell expected to run the script explicit by adding a shebang.