for i in $*; do
	if !([ -d $i ]); then
		echo cnv: $i
		tr -d "\r" <$i >$i.tmp
		mv $i.tmp $i
		chmod o+x,g+x,u+x $i
	fi
done
