#!/bin/bash

#clear the window
clear

#test with single quotes
echo 'the user is `whoami`'

#test with double quotes and back quotes
echo "the user is `whoami`"

#test with double quotes, but no back quotes
echo "the user is whoami"

#test with back quotes
echo the user is `whoami`

