I have a unix file with the following contents.
$cat myfile.txt
abc:1
abc:2
hello:3
hello:6
wonderful:1
hai:2
hai:4
hai:8
How do I get the max value given for each text in the file above.
'abc' value 2 'hello' value 6 'hai' value 8 'womderful' 1
|
I have a unix file with the following contents.
How do I get the max value given for each text in the file above. 'abc' value 2 'hello' value 6 'hai' value 8 'womderful' 1 |
||||
|
Based on the current example in your question, minus the first line of expected output:
You example input and expected output are very confusing.... The reason I posted this is to get feedback from the OP forthcoming This assumes the data is unsorted, but also works with sorted data (New):
|
||||
|
|
abc 1comes from whenyour input has 2 lines that match abc AND the 2nd line saysabc 2WHILE your output forhello 6is selecting the 2nd line of hello. AND your headline says "extract number after delimiter", I don't see that happening. Please clarify. Good luck. – shellter Nov 16 '12 at 16:48