Another option would be to run the script using bash, this would omit the need to modify the files' permissions.
bash path/to/file.sh
Alternatively:
sh path/to/file.sh
Note that
In this case you're notexecuting the script itself, you're executingbash or sh which then runs the script. Therefore the script does not need to be executable.