#!/bin/sh
for i
    do
	echo "Fixing $i..."
	mv $i ttt
	tr -d '\015' < ttt > $i
    done
