home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / gawk-2.15.5-src.lha / gawk-2.15.5 / test / fsrs.awk < prev    next >
Text File  |  1993-10-20  |  111b  |  9 lines

  1. BEGIN {
  2.        RS=""; FS="\n";
  3.        ORS=""; OFS="\n";
  4.       }
  5. {
  6.         split ($2,f," ")
  7.         print $0;
  8. }
  9.