shell run file code example
Example 1: how to run .run file in linux
sudo chmod +x /path/to/file.run
sudo /path/to/file.run
Example 2: how to run shell script
include
#!/bin/bash (1st line inside yourfile.sh)
to run
./yourfile.sh
if you do not include that line
bash yourfile.sh