Computer Tips - Linux: How to see what a word looks like in reverse?

Date: 2013aug8 OS: Linux Q. Linux: How to see what a word looks like in reverse? A. Use the "rev" command. For example to see what "heather" is backwards:
echo heather | rev
This yields:
rehtaeh
Which is also a girl's name.