mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-22 14:30:29 +00:00
ddb82cb2e0
Maybe someday I'll become adept at using cvs...
8 lines
209 B
Plaintext
8 lines
209 B
Plaintext
# prep2 - prepare countries by continent, inverse pop. den.
|
|
|
|
BEGIN { FS = "\t"}
|
|
{ den = 1000*$3/$2
|
|
printf("%-15s:%12.8f:%s:%d:%d:%.1f\n",
|
|
$4, 1/den, $1, $3, $2, den) | "sort"
|
|
}
|