#!/bin/ksh

TEMPFILE=stripm-temp

if test -a $TEMPFILE 
  then echo "temp file exists"
  else if test -a $1
    then /usr/u/walker/bin/nt2unix < $1 > $TEMPFILE
         rm $1
         /usr/bin/cat $TEMPFILE > $1
         rm $TEMPFILE
    fi
fi
