linux sh files 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 shell script
chmod +x <fileName>
./fileName. # or use ->. bash fileName
#!/bin/sh
# This is a comment!
echo Hello World # This is a comment, too!
chmod +x <fileName>
./fileName. # or use ->. bash fileName