mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-11-18 19:09:31 +00:00
ddb82cb2e0
Maybe someday I'll become adept at using cvs...
7 lines
185 B
Plaintext
7 lines
185 B
Plaintext
# prep1 - prepare countries by continent and pop. den.
|
|
|
|
BEGIN { FS = "\t" }
|
|
{ printf("%s:%s:%d:%d:%.1f\n",
|
|
$4, $1, $3, $2, 1000*$3/$2) | "sort -t: +0 -1 +4rn"
|
|
}
|