echo on Linux does not need quotes
The echo
command in Linux does not require quotes:
echo Hi there blog readers
…will output the same as:
echo "Hi there blog readers"
The obvious exception is when the string to be printed contains special characters that would confuse echo
itself, in which case quotations may be necessary.