#!/bin/sh
#
# convert all files in a directory from DOS to Unix
#
for f in *; do
	if [ -f $f ]; then
		dos2unix $f x
		mv x $f
	fi
done
