Hello World Program
– shows us the correct syntax for runnable code
#!/bin/sh
# 1st program; hello world
echo “ Hello World ”
Hello World + Storing Variables Program
#!/bin/sh
# 2nd program; hello world
#initializing the string variable
StringVariable = “ Hello World ”
# displaying the value of the string variable
echo “ $StringVariable ”