how to run a bash file in a shell script in linux code example
Example 1: 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 2: run sh file
sh yourfile.sh