#!/bin/bash
while test "$1" != "" ; do
{
	cat $1 | tr '\r' '\n' > temp_tr_output
	mv temp_tr_output $1
        shift
};
done
