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...
5 lines
113 B
Awk
5 lines
113 B
Awk
BEGIN { FS = OFS = "\t" }
|
|
$4 == "North America" { $4 = "NA" }
|
|
$4 == "South America" { $4 = "SA" }
|
|
{ print }
|