#!/bin/csh
# oasisDos2Unix - Convert OASIS files from DOS format to Unix format
#

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

