run sh script linux code example

Example 1: how to run shell script

chmod +x <fileName>
./fileName.  # or use ->. bash fileName

Example 2: how to run a .sh file

./yourscript.sh

Example 3: how to run shell script

include 
#!/bin/bash (1st line inside yourfile.sh)

to run
./yourfile.sh

if you do not include that line
bash yourfile.sh

Example 4: ubuntu run a shell script

$ ./script_name.sh

// if it need sudo permission the type:
$ sudo ./script_name.sh

Example 5: how to execute .sh file in linux

./script-name-here.sh #Chage the "script-name-here" to the name of the .sh file.