# This script removes the carriage return (\015) from ASCII files # that have come from Windows for f in *.c *.h *conf* makefile do echo $f mv $f temp cat temp | tr -d "\015" > $f done rm temp