home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / mm / mm-ccmd-0.91-20031009.tar.gz / mm-ccmd-0.91-20031009.tar / work / ccmd / split.awk < prev    next >
Text File  |  2002-05-07  |  365b  |  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.