I would like to write a script that will read a text file with thousands of lines of data and rearrange the data to a different format and save it in the new format. for example:
Source data format:
x y z
12 13 14
7 8 9
New data format:
z x y
14 12 13
9 7 8
I have been playing around with the array functions, but I am getting frustrated at the lack of documentation. This seems like it should be an easy task. Please help.
-Rob