show/hide this revision's text 2 deleted 88 characters in body

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/).

show/hide this revision's text 1

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/).