#!/bin/sh

if [ "$1" = "" ]; then
	echo "$0 file"
	exit 1
fi

perl -pe 's/\r\n/\n/' $1 > $1.tmp || exit 1
mv $1.tmp $1 || exit 1

