Home | History | Annotate | Line # | Download | only in dist
checklinks.awk revision 1.1.1.1
      1  1.1  apb # Check links in tz tables.
      2  1.1  apb 
      3  1.1  apb # Contributed by Paul Eggert.
      4  1.1  apb 
      5  1.1  apb /^Link/ { used[$2] = 1 }
      6  1.1  apb /^Zone/ { defined[$2] = 1 }
      7  1.1  apb 
      8  1.1  apb END {
      9  1.1  apb     status = 0
     10  1.1  apb 
     11  1.1  apb     for (tz in used) {
     12  1.1  apb 	if (!defined[tz]) {
     13  1.1  apb 	    printf "%s: Link to non-zone\n", tz
     14  1.1  apb 	    status = 1
     15  1.1  apb 	}
     16  1.1  apb     }
     17  1.1  apb 
     18  1.1  apb     exit status
     19  1.1  apb }
     20