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

  1. .KEY FROMFILE/A,PAREXARGS/M
  2.  
  3. ; PARex v3.xx program script: "StripCR"
  4. ; ~~~~~~~~~~~~~~~~~~~~~~~~~~   ~~~~~~~
  5. ; Update: 13-Nov-93
  6.  
  7. ; $VER: StripCR 39.001 (13.11.93) Strips all CR's from a text.
  8.  
  9. ; MS-DOS uses CR+LF for an end-of-line code. The Amiga only uses LF.
  10. ; This program will convert all CR+LF codes to LF.
  11.  
  12. ; If no TO file is given then the destination file is called "FROMFILE.prx".
  13.  
  14. PAREX <FROMFILE> <PAREXARGS> TRACE LOAD { REPL \r\n BY \n }
  15.  
  16.