mirror of
https://github.com/GnoConsortium/gno.git
synced 2025-08-14 15:27:18 +00:00
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]
|
|
}
|
|
|