home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / beehive / utilitys / convert.arc / CONVERT.DOC < prev    next >
Text File  |  1990-07-21  |  2KB  |  32 lines

  1. CONVERT: converts text files from one operating system format to another.
  2. version 1.1 Jan 11, 1987 (Microsoft C v4.00) (c) Chris Tham
  3.  
  4. usage: CONVERT [-r] [-v] [-w] [[[-OPTION] [filename] ... ] ... ]
  5.  
  6. where OPTION may be one of the following:
  7. st    converts CR-LF sequence to CR (mnemonic: System to TRSDOS)
  8. su    converts CR-LF sequence to LF (mnemonic: System to Unix)
  9. ts    converts CR to CR-LF sequence (mnemonic: TRSDOS to System)
  10. tu    converts CR to LF             (mnemonic: TRSDOS to Unix)
  11. us    converts LF to CR-LF (DEFAULT)(mnemonic: Unix to System)
  12. ut    converts LF to CR             (mnemonic: Unix to TRSDOS)
  13. System stands for either PC/MSDOS or CP/M environments.
  14.  
  15. Additional options:
  16. -r    renames original file extension to .BAK and replaces original file 
  17.     with conversion.
  18. -v    Verbose output of program progress to stdout.
  19. -w    strips off high bit of each character (Wordstar files)
  20. -    read from standard input rather than a file.
  21.  
  22. ----------------------------------------------------------------------------
  23.  
  24. Downloaded as CONVERT.ARC from Bill Bolton's system and ported to CP/M by
  25. Jon Saxton, 29 Apr 87.  No version number change.  MS-DOS and Microsoft C
  26. compatibility preserved.
  27.  
  28. Note that the -r option is REQUIRED if you want to output a converted file
  29. to disk.  This seems to be deliberate.  I would have done it differently and
  30. made disk file output the default action but I was not willing to interfere
  31. with Chris's program more than required to port it.
  32.