[BACK]Return to groups.awk CVS log [TXT][DIR] Up to [local] / www

Diff for /www/Attic/groups.awk between version 1.3 and 1.4

version 1.3, 1999/09/20 14:30:53 version 1.4, 1999/09/30 18:43:32
Line 26 
Line 26 
         next;          next;
         }          }
   
 $1 == "C" { country = substr($0, 2);  $1 == "C" { country = substr($0, 3);
         if (country != oldCountry) {          if (country != oldCountry) {
                 print "<TR><TD BGCOLOR=\"#FFFF00\" COLSPAN=6 ALIGN=CENTER><B>" country "</B>"                  print "<TR><TD BGCOLOR=\"#FFFF00\" COLSPAN=6 ALIGN=CENTER><B>" country "</B>"
          }           }
         oldCountry = country          oldCountry = country
         next          next
 }  }
 $1 == "P" { prov = substr($0, 2); next }  $1 == "P" { prov = substr($0, 3); next }
 $1 == "T" { city = substr($0, 2); next }  $1 == "T" { city = substr($0, 3); next }
 $1 == "A" { addr = substr($0, 2); next }  $1 == "A" { addr = substr($0, 3); next }
 $1 == "O" { org = substr($0, 2); next }  $1 == "O" { org = substr($0, 3); next }
 $1 == "I" { indv = substr($0, 2); next }  $1 == "I" { indv = substr($0, 3); next }
 $1 == "B" { phone = substr($0, 2); next }  $1 == "B" { phone = substr($0, 3); next }
 $1 == "F" { fax = substr($0, 2); next }  $1 == "F" { fax = substr($0, 3); next }
 $1 == "M" { email = substr($0, 2); next }  $1 == "M" { email = substr($0, 3); next }
 $1 == "U" { url = substr($0, 2); next }  $1 == "U" { url = substr($0, 3); next }
 $1 == "N" { note = substr($0, 2); next }  $1 == "N" { note = substr($0, 3); next }
   
 # left over - must be part of note?  # left over - must be part of note?
         {          {

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4