Hi There,
Im new to Perl and can someone help me here. I have a file with following sample text
a.txt 4
b.txt 3
z.txt 1
a.txt 5
b.txt 2
b.txt 4
z.txt 2
and i need to process this file and for each file name (a.txt,b.txt,z.txt) in it, i need to display the max value. Output should look like
a.txt 5
b.txt 4
z.txt 2
Pls help.Thanks.