how to run a code in shell code example
Example 1: how to execute a bash script in terminal
$ chmod +x fileName
$ ./fileName
Example 2: ubuntu run a shell script
$ ./script_name.sh
// if it need sudo permission the type:
$ sudo ./script_name.sh