mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-01-22 18:30:47 +00:00
ddb82cb2e0
Maybe someday I'll become adept at using cvs...
9 lines
171 B
Awk
9 lines
171 B
Awk
BEGIN { FS = "\t" }
|
|
FILENAME == "capitals" {
|
|
cap[$1] = $2
|
|
}
|
|
FILENAME == "countries" && $4 == "Asia" {
|
|
print $1, $3, cap[$1]
|
|
}
|
|
|