command to run shell script code example
Example 1: how to run shell script
chmod +x <fileName>
./fileName.
Example 2: how to execute a bash script in terminal
$ chmod +x fileName
$ ./fileName
Example 3: how to run shell script
include
to run
./yourfile.sh
if you do not include that line
bash yourfile.sh
Example 4: how to run shell script
chmod +x <filename>
./<filename>
sh <filename>.sh
bash <filename>.sh
Example 5: how to execute .sh file in linux
./script-name-here.sh
Example 6: how to run shell script
bash yourfile.sh