how to run a shell script 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.
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: ubuntu run a shell script
$ ./script_name.sh
// if it need sudo permission the type:
$ sudo ./script_name.sh