home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / text / pastex-1.3-3of8.lha / PasTeX / macros / nice20.zoo / 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.