First, if the file is executable... you should be able to just run it. If not, you can either type sh or bash before the file name... or 'chmod o+x <filename>' to make it executable. Lastly, may need to specify the location of the file to execute.
examples
./script
sh ./script
bash...