execute .sh file ubuntu 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: ubuntu make sh file executable
chmod +x <fileName>
sudo ./<fileName>
Example 3: how to execute .sh file in linux
./script-name-here.sh #Chage the "script-name-here" to the name of the .sh file.