how to run .sh file in linux code example

Example 1: ubuntu make sh file executable

chmod +x <fileName>
sudo ./<fileName>

Example 2: how to run shell script

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

Example 3: how to run a .sh file

./yourscript.sh

Example 4: 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 5: how to run shell script

# method 1
chmod +x <filename>
./<filename>

# method 2
sh <filename>.sh

# method 3 (Only for bash script)
bash <filename>.sh