qse/ase/test/awk/cou-026.awk

4 lines
97 B
Awk

BEGIN { FS = "\t"; }
{ pop[$4] += $3; }
END { for (name in pop) print name, pop[name]; }