To start the shell-script 'file.sh':
sh file.sh
bash file.sh
Another option is set executable permission using chmod command:
chmod +x file.sh
Now run .sh file as follows:
./file.sh
Big thanks to Vivek Gite for the answer (http://www.cyberciti.biz/faq/run-execute-sh-shell-script/).
