qse/ase/test/awk/cou-027.out

17 lines
213 B
Plaintext
Raw Normal View History

2006-12-05 11:34:20 +00:00
BEGIN {
2006-12-15 06:53:11 +00:00
FS = " ";
2006-12-05 11:34:20 +00:00
}
{
pop[$4] += $3;
}
END {
for (c in pop)
printf ("%15s %6d\n",c,pop[c]) | "sort -t' ' +1rn";
}
Asia 2173
North America 340
Europe 172
South America 134