ECHO function with VARIABLE Manually

 [prabhucloudxlab@cxln4 ~]$ cat>echo2.sh
#! /bin/bash
#pass the message in echo function with variables
name="PRABHU"
job="QA ENGINEER"
echo "my name is $name"
sleep 2
echo "$name doing the the $job"
echo "===========================BREAK=============================================="



[prabhucloudxlab@cxln4 ~]$ chmod 777 echo2.sh


[adimulamvenkat19851609@cxln4 ~]$ ./echo2.sh
my name is PRABHU
PRABHU doing the the QA ENGINEER
===========================BREAK==============================================