You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
770 B
20 lines
770 B
/rcNameID/ {
|
|
if ($2 ~ /^[0-9]*$/ && $2 >= 376) {
|
|
if ($2 == 376) gsub(/[0-9]*$/, "385");
|
|
else if ($2 == 377) gsub(/[0-9]*$/, "376");
|
|
else if ($2 == 378) gsub(/[0-9]*$/, "377");
|
|
else if ($2 == 379) gsub(/[0-9]*$/, "386");
|
|
else if ($2 == 380) gsub(/[0-9]*$/, "378");
|
|
else if ($2 == 381) gsub(/[0-9]*$/, "387");
|
|
else if ($2 == 382) gsub(/[0-9]*$/, "379");
|
|
else if ($2 == 383) gsub(/[0-9]*$/, "380");
|
|
else if ($2 == 384) gsub(/[0-9]*$/, "381");
|
|
else if ($2 == 385) gsub(/[0-9]*$/, "382");
|
|
else if ($2 == 386) gsub(/[0-9]*$/, "388");
|
|
else if ($2 == 387) gsub(/[0-9]*$/, "389");
|
|
else if ($2 == 388) gsub(/[0-9]*$/, "390");
|
|
else if ($2 == 389) gsub(/[0-9]*$/, "391");
|
|
else if ($2 == 390) gsub(/[0-9]*$/, "392");
|
|
}
|
|
}
|
|
{ print }
|