.sh file unix code example
Example 1: shell script sh
#!/bin/sh
# This is a comment!
echo Hello World # This is a comment, too!
Example 2: how to execute .sh file in linux
./script-name-here.sh #Chage the "script-name-here" to the name of the .sh file.