mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-03-11 14:29:31 +00:00
12 lines
369 B
Awk
12 lines
369 B
Awk
|
# print countries with column headers and totals
|
||
|
|
||
|
BEGIN { FS = "\t" # make tab the field separator
|
||
|
printf("%10s %6s %5s %s\n\n",
|
||
|
"COUNTRY", "AREA", "POP", "CONTINENT")
|
||
|
}
|
||
|
{ printf("%10s %6d %5d %s\n", $1, $2, $3, $4)
|
||
|
area = area + $2
|
||
|
pop = pop + $3
|
||
|
}
|
||
|
END { printf("\n%10s %6d %5d\n", "TOTAL", area, pop) }
|