mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-22 14:30:29 +00:00
6 lines
112 B
Awk
6 lines
112 B
Awk
|
BEGIN { FS = "\t" }
|
||
|
{ pop[$4] += $3 }
|
||
|
END { for (name in pop)
|
||
|
print name, pop[name]
|
||
|
}
|