how to run .sh file in ubuntu terminal code example
Example 1: how to install .sh file in ubuntu
bash file_name.sh
#Ex: $ bash Anaconda3-2020.11-Linux-x86_64.sh
Example 2: how to run shell script
chmod +x <fileName>
./fileName. # or use ->. bash fileName
Example 3: run sh file
sh yourfile.sh