bash show variable code example
Example 1: find all variables in server bash
Just type next command to list all environments varialbes in terminal:
printenv
Example 2: echo variable bash
echo "${var}"
Example 3: print variable in bash
echo
echo "When single quote is used with string:"
invitation='Welcome to javatpoint'
echo $invitation
echo
echo "When double quote is used with string:"
invitation="Welcome to javatpoint"
echo $invitation
echo
echo "When variable is used with double quote:"
Remark="Hello User!, $invitation"
echo $Remark
echo
echo "When variable is used with single quote:"
Remark='Hello User!, $invitation'
echo $Remark
echo