execute bash code example
Example 1: how to execute a bash script in terminal
$ chmod +x fileName
$ ./fileName
Example 2: how to execute .sh file in linux
./script-name-here.sh #Chage the "script-name-here" to the name of the .sh file.
$ chmod +x fileName
$ ./fileName
./script-name-here.sh #Chage the "script-name-here" to the name of the .sh file.