how to execute file in terminal code example
Example 1: ubuntu make sh file executable
chmod +x <fileName>
sudo ./<fileName>
Example 2: how to execute a bash script in terminal
$ chmod +x fileName
$ ./fileName
Example 3: execute file from windows terminal
start file.ext