home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fonts 1 / freshfonts1.bin / programs / amiga / tpp / tex / nice20.lha / dtou next >
Text File  |  1990-10-09  |  180b  |  12 lines

  1. #! /bin/csh
  2. # DOS_TO_UNIX text file conversion
  3. # changes $0A/$0D eol-marker to $0D
  4. foreach i ($*)
  5.   echo "Processing $i"
  6.   ex - $i <<":END:"
  7.     g/$/s///
  8.     w!
  9.     q
  10. ":END:"
  11. end
  12.