home *** CD-ROM | disk | FTP | other *** search
- .KEY FROMFILE/A,PAREXARGS/F
-
- ; PARex v3.xx program script: "StripHR"
- ; ~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~
- ; Update: 13-Nov-93
-
- ; $VER: StripHR 39.001 (13.11.93) Strips hard returns from a text.
-
- ; Useful when loading a text file in a wordprocessor, to run this program
- ; first. It'll strip all hard returns, unless they are followed by a space,
- ; a tab or another hard return.
-
- ; If no TO file is given then the destination file is called "FROMFILE.prx".
-
- PAREX <FROMFILE> <PAREXARGS> TRACE LOAD { REPL "\n " BY "\n " } { REPL \n\t BY \n\t } { REPL \n\n#\n BY \n\n WILD }
-
-