home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / pine / ccmd / split.awk < prev    next >
Encoding:
AWK Script  |  1988-08-19  |  86 b   |  4 lines

  1. BEGIN { output = "/dev/null" }
  2. /^#file/ { output = $2; next }
  3. { print >output; next }
  4.