ok, today i was writing a linux shell script but i forgot how to declare a variable so im posting here so i wont forget again.

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


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