What is the difference of using or not using the BACK QUOTE `
For example, both the code works regardless.
First example with the BACK QUOTE, second example without BACK QUOTE.
Thank you so much in advance for your help.
if [ "`/usr/bin/whoami`" != "root" ] ; then
/bin/echo "This script must be run as root or sudo."
exit 0
fi
if [ "/usr/bin/whoami" != "root" ] ; then
/bin/echo "This script must be run as root or sudo."
exit 0
fi