I want to reverse rows (single word) of the file.
cat dummy
Hugo
Dumas
Camus
Wanted output looks like this:
Hugo oguH
Dumas samuD
Camus sumaC
Probably it's easiest to do with awk, but perl oneliner would be grate too.
|
|
|
No need for
Results:
|
|||||||||
|
For every line in the input, loop over the characters taking a length-1 substring from each position and concatenate to make the reversed string. Then print row, a space, and the reversed string. Easier in Python!
For each line in standard input, strip white space to get rid of the newline. Then print the row, a space, and the row reversed. It's reversed using a "slice" with default beginning and end, but a step of -1 to make the slice get the characters in reverse. |
|||
|
|
Explanation (see
|
||||
|
|