Hi,
I have a script that prints outputs into a temp file that looks like this:
name x y z
abc 1 4 3
xyz 2 8 5
I want to sort the temp file and print the values onto another file "values", with descending order based on z.
so output would look like:
name x y z
xyz 2 8 5
abc 1 4 3
Thanks