#!/bin/csh
# oasisDos2Unix - Convert OASIS files from DOS format to Unix format
# Copyright 1991 MBARI
# Author:
# MBARI provides this documentation and code "as is", with no warranty,
# express or implied, of its quality or consistency. It is provided without
# support and without obligation on the part of the Monterey Bay Aquarium
# Research Institute to assist in its use, correction, modification, or
# enhancement. This information should not be published or distributed to
# third parties without specific written permission from MBARI.
#

set tmpfile = tmpfile

foreach file (*.h *.c *.inc *.s *.hex *.m96 *.m1 *.m2 *.m3 *.ep? *.LST *.lst)
    /usr/bin/dos2ux $file > $tmpfile
    rm -f $file
    mv $tmpfile $file
end

