home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 2: PC / frozenfish_august_1995.bin / bbs / d09xx / d0957.lha / PARex / PARexScripts / StripHR < prev    next >
AmigaDOS Script File  |  1993-11-24  |  576b  |  17 lines

  1. .KEY FROMFILE/A,PAREXARGS/F
  2.  
  3. ; PARex v3.xx program script: "StripHR"
  4. ; ~~~~~~~~~~~~~~~~~~~~~~~~~~   ~~~~~~~
  5. ; Update: 13-Nov-93
  6.  
  7. ; $VER: StripHR 39.001 (13.11.93) Strips hard returns from a text.
  8.  
  9. ; Useful when loading a text file in a wordprocessor, to run this program
  10. ; first. It'll strip all hard returns, unless they are followed by a space,
  11. ; a tab or another hard return.
  12.  
  13. ; If no TO file is given then the destination file is called "FROMFILE.prx".
  14.  
  15. PAREX <FROMFILE> <PAREXARGS> TRACE LOAD { REPL "\n " BY "\n " } { REPL \n\t BY \n\t } { REPL \n\n#\n BY \n\n WILD } 
  16.  
  17.