#! /bin/sh
# use:  d2u dostxtfile
# convert dostxtfile in unixtxtfile

for b in $* ; do
	rm -f /tmp/d2u.tmp
	conv $b /tmp/d2u.tmp u
	rm -f $b
	mv /tmp/d2u.tmp $b
done;