what is a .sh file 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 run a .sh file
./yourscript.sh
Example 3: .sh file example
#!/bin/bash
echo "Hi How Are Ya"