I have a text file, tab delimited that looks like this in the format, name and age:
chris 19
bobby 29
doofus 67
I wanted to pull in the text file, and then sort via the second field. I can pull in the text file, and format the data, but I can't sort it right and as such have removed the sort code I had...
Here is the simple file pull: How could I modify it?
open (FILEHERE, 'ages.txt');
while (<FILEHERE>) {
chomp;
my($n, $s) = split("\t");
print "$a\t $s";
}
close (FILEHERE);
sort -nk2 file? This will sort numerically on the second column. – squiguy Nov 20 '12 at 17:59