home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntlib32.zoo / crlf / crlf.doc < prev    next >
Text File  |  1993-02-11  |  1KB  |  34 lines

  1. crlf.c by entropy@terminator.rs.itd.umich.edu
  2. PUBLIC DOMAIN -- NO RIGHTS RESERVED
  3.  
  4. usage:  crlf -s file [file2 [...]] (to strip carriage returns)
  5.         crlf -a file [file2 [...]] (to add carriage returns)
  6.  
  7. crlf converts text files between TOS (MS-DOS) and UNIX style line
  8. terminators.
  9.  
  10. With the -s option, it strips all carriage returns from the specified files.
  11.  
  12. With the -a option, it adds carriage returns before each line feed in a
  13. file.  Be careful that you do not run this twice on the same file (or at all
  14. on a file that already has carriage returns) as you will end up with really
  15. strange line terminators that way (recover by stripping and re-adding
  16. returns.
  17.  
  18. If any errors/warnings occur while trying to convert a file, an error status
  19. will be returned to the OS when the program exits.  If you are running from
  20. a Makefile and know there will be errors (e.g. "crlf -s *" in a directory
  21. that contains subdirectories) you should ignore the return status (e.g.
  22. "-crlf -s *" in a Makefile).
  23.  
  24. The program attempts to preserve the timestamp of the original file.  If it
  25. is unable to do so it will continue to convert the file but will return an
  26. error status to the OS.
  27.  
  28. crlf does NOT recursively convert subdirectories as of yet.
  29.  
  30. The program is 16/32 bit clean.
  31.  
  32. Enjoy,
  33. entropy
  34.