#!/bin/sh
   if [ $# = 0 ] ; then 
        THEDIR = . 
  else 
        THEDIR = $1 
  fi 
  for file in `find $THEDIR` ; do 
  cat $file |tr -d '\015' >file.tmp 
  mv file.tmp $file 
  done 

