how to run a .sh file in ubuntu code example
Example 1: run sh from terminal mac
chmod +x fileName
bash fileName
Example 2: how to run shell script
chmod +x <fileName>
./fileName. # or use ->. bash fileName
Example 3: how to run a .sh file
./yourscript.sh
Example 4: ubuntun run .sh\
chmod +x /path/to/yourscript.sh
Example 5: how to execute .sh file in linux
./script-name-here.sh #Chage the "script-name-here" to the name of the .sh file.