qse/ase/test/awk/cou-022.awk

7 lines
201 B
Awk
Raw Normal View History

2006-12-04 12:59:01 +00:00
#BEGIN { FS = "\t"; OFS = "\t"; }
BEGIN { FS = OFS = "\t"; }
2006-12-04 07:17:13 +00:00
$4 == "North America" { $4 = "NA"; }
$4 == "South America" { $4 = "SA"; }
{ print; }