I have a delimited text file with some data.
I need to revert the data in this way:
1) the last line will be the first, and son on (invert all the lines)
2) each line must have a reverted data (last data item will be the first and so on)
Example:
file IN:
100 200 230
238 345 333
234 455 248
file OUT
248 455 234
333 345 238
230 200 100
can you help me ?
Thanks in advance
cameyo