ok, lets say i want the say to print (output on screen) the words
Welcome to Wallpaperama
i can use this example:
CODE:
# DEFINE DOMAIN NAME
DOMAIN="wallpaperama.com"
echo Welcome to $DOMAIN
DOMAIN="wallpaperama.com"
echo Welcome to $DOMAIN
save the file and make it executable and run it
OUTPUT:
Welcome to wallpaperama.com
you can learn more here:
how-to-create-shell-scripts-creating-new-command-script-file

