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