home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / mm / ccmd / split.awk < prev    next >
Encoding:
AWK Script  |  1990-12-18  |  365 b   |  8 lines

  1. # Copyright (c) 1986, 1990 by The Trustees of Columbia University in
  2. # the City of New York.  Permission is granted to any individual or
  3. # institution to use, copy, or redistribute this software so long as it
  4. # is not sold for profit, provided this copyright notice is retained.
  5. BEGIN { output = "/dev/null" }
  6. /^#file/ { output = $2; next }
  7. { print >output; next }
  8.