#!/bin/bash #This is first variable declaration NAME="vijay" #This is second variable Name="Pater" #This is Third variable name="james" #Print NAME Variable echo "My Name is ${NAME}" #Print Name variable echo "My Name is ${Name}" #Print name variable echo "My name is ${name}"