gno/usr.bin/awk/tests/ch2p42.awk

5 lines
113 B
Awk
Raw Normal View History

BEGIN { FS = OFS = "\t" }
$4 == "North America" { $4 = "NA" }
$4 == "South America" { $4 = "SA" }
{ print }