how to run a sh script in ubuntu code example
Example 1: ubuntun run .sh\
chmod +x /path/to/yourscript.sh
Example 2: ubuntu run a shell script
$ ./script_name.sh
// if it need sudo permission the type:
$ sudo ./script_name.sh
chmod +x /path/to/yourscript.sh
$ ./script_name.sh
// if it need sudo permission the type:
$ sudo ./script_name.sh