ubuntu script.sh 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 simple sh script
#!/bin/bash
echo "welcome"
ls
echo "this is the whole list of dir"
bash file_name.sh
#Ex: $ bash Anaconda3-2020.11-Linux-x86_64.sh
#!/bin/bash
echo "welcome"
ls
echo "this is the whole list of dir"