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

  1. .KEY FROMFILE/A,PAREXARGS/F
  2.  
  3. ; PARex v3.xx program script: "AddCR"
  4. ; ~~~~~~~~~~~~~~~~~~~~~~~~~~   ~~~~~
  5. ; Update: 13-Nov-93
  6.  
  7. ; $VER: AddCR 39.001 (13.11.93) Adds CR's before each LF code of a text.
  8.  
  9. ; The Amiga uses LF for an end-of-line code, whereas MS-DOS uses CR+LF.
  10. ; This program will convert all LF codes to CR+LF. If a CR+LF should
  11. ; already exist, then they will be left alone, thus no CR+CR+LF will 
  12. ; occur!
  13.  
  14. ; If no TO file is given then the destination file is called "FROMFILE.prx".
  15.  
  16. PAREX <FROMFILE> <PAREXARGS> TRACE LOAD { REPL \r\n BY \r\n } { REPL \n BY \r\n }
  17.  
  18.