Variable lab question 4

Another script by the name backup-file.sh is placed in your home directory at /home/bob.

This script creates a backup of a file by creating a copy of the same file and apending _bkp to it’s name. However it’s not working’. Please inspect and fix the problem with the script.

THis is n backup-file.sh

user_name=Michael

echo “Hi $USER_NAME, Welcome to xFusionCorp Industries. We and the rest of the management are glad to have you on board”

I modify the variable as
$user_name=Michael
echo “Hi $user_name, Welcome to xFusionCorp Industries. We and the rest of the management are glad to have you on board”

but it still not working.
can anyone help me to resolve the issue.

First when you define a variable you don’t put a $ in front of the variable name. You use the $ when you call it. Also variables are case sensitive. I think with that information you can figure it out.