How do I append the UNIX command date to an echo statement
Date time will take in an arbitrary format string.
> date +"Hi, today is - %a %b %e %H:%M:%S %Z %Y"
Hi, today is - Thu Feb 2 03:28: CET 2012
This will do it:
echo "Hi, today is $(date)"