home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 1 / 1082 / fmt.pl
Encoding:
Perl Script  |  1990-12-28  |  410 b   |  31 lines

  1. #!/usr/bin/perl
  2.  
  3. while (<>) {
  4.     if (/^\n$/) {
  5.     &flush if $line;
  6.     print "\n";
  7.     } elsif (/^>/) {
  8.     print;
  9.     } else {
  10.     $line .= $_;
  11.     } 
  12. &flush if $line;
  13. exit 0;
  14.  
  15.  
  16. sub flush {
  17.     $_ = $line;
  18.     $line = '';
  19.     s/^\s+//;
  20.     s/\s+$//;
  21.     s/\s+/ /g;
  22.     s/(\w)- /$1/g;    # unhyphenate
  23.     write;
  24.  
  25. format STDOUT =
  26. ^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ~~
  27. $_
  28. .
  29.