You receive a string that is completely backwards. Which simple command can you use to read it properly?
Hint 1: Look for a command that simply reverses its input.
Hint 2: `echo “
Solution:
The `rev` command reverses whatever text it receives. For example, `echo “olleH” | rev` outputs “Hello”. It’s useful for reading backwards text.

Leave a Reply