home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / util / edit / jade / explode-doc < prev    next >
Text File  |  1994-10-06  |  110b  |  5 lines

  1. #!/bin/sh
  2. # explode-doc -- make the DOC file easier to read
  3.  
  4. awk 'BEGIN { RS="\f" } { print $0, "\n\f" }' DOC
  5.