#!/bin/sh
#
# convert a given file from DOS to UNIX  (CR/LF - LF) 
duconv -u $1 $1.tmp
mv $1.tmp $1
