run shell script in linux code example
Example 1: ubuntu run a shell script
$ ./script_name.sh
// if it need sudo permission the type:
$ sudo ./script_name.sh
Example 2: how to run shell script
bash yourfile.sh
$ ./script_name.sh
// if it need sudo permission the type:
$ sudo ./script_name.sh
bash yourfile.sh