#! /bin/sh
for d
do
	if test ! -d "$d"
	then
		mkdir "$d" || exit 1
	fi
done
exit 0
