home *** CD-ROM | disk | FTP | other *** search
- .KEY FROMFILE/A,PAREXARGS/F
-
- ; PARex v3.xx program script: "AddCR"
- ; ~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~
- ; Update: 13-Nov-93
-
- ; $VER: AddCR 39.001 (13.11.93) Adds CR's before each LF code of a text.
-
- ; The Amiga uses LF for an end-of-line code, whereas MS-DOS uses CR+LF.
- ; This program will convert all LF codes to CR+LF. If a CR+LF should
- ; already exist, then they will be left alone, thus no CR+CR+LF will
- ; occur!
-
- ; If no TO file is given then the destination file is called "FROMFILE.prx".
-
- PAREX <FROMFILE> <PAREXARGS> TRACE LOAD { REPL \r\n BY \r\n } { REPL \n BY \r\n }
-
-