mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-08-13 23:25:39 +00:00
8 lines
197 B
Awk
8 lines
197 B
Awk
# print continents and populations, sorted by population
|
|
|
|
BEGIN { FS = "\t" }
|
|
{ pop[$4] += $3 }
|
|
END { for (c in pop)
|
|
printf("%15s\t%6d\n", c, pop[c]) | "sort -t'\t' +1rn"
|
|
}
|