how to run a file in linux code example

Example 1: ubuntu make sh file executable

chmod +x <fileName>
sudo ./<fileName>

Example 2: how to run .run file in linux

sudo chmod +x /path/to/file.run
sudo /path/to/file.run

Example 3: how to run shell script

chmod +x <fileName>
./fileName.  # or use ->. bash fileName

Example 4: how to execute .sh file in linux

./script-name-here.sh #Chage the "script-name-here" to the name of the .sh file.

Example 5: linux how to execute a file

./file_name.sh