home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / doc / toc.awk < prev    next >
Text File  |  1992-02-17  |  295b  |  9 lines

  1. #! /bin/sh
  2. # turn raw index data into tbl input for a table of contents.
  3. # record format: toc:page:title:section #:chapter|majorsection
  4. exec awk '
  5. BEGIN { FS=":"; sep="\t" }
  6. $5 == "chapter"      {           print $4 sep $3 sep $2 }
  7. $5 == "majorsection" { print ""; print $4 sep $3 sep $2 }
  8. ' $*
  9.