#!/bin/sh

if [ "$2" = "" ]; then
  echo "USAGE:  dos2unix FILE1 FILE2"
fi

cat $1 | tr -d '\r' > $2
