home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / N / CNEWS / _CNEWS.TAR / usr / doc / cnews / docs / toc.awk < prev    next >
Encoding:
AWK Script  |  1994-09-02  |  295 b   |  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.