how to run shell script in ubuntu 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. # or use ->. bash fileName
Example 3: ubuntu run a shell script
$ ./script_name.sh
// if it need sudo permission the type:
$ sudo ./script_name.sh