#!/bin/sh
#	Mkdir directory ...
# Given a list of directory names, attempt to create all of them.  This
# involves a recursive test to see if all the parent directories exist,
# and if not, this command is applied recursively.  We try to explain
# failures.

for d
do	p=`dirname $d`
	test -d $p || $0 $p
	mkdir $d || {
		echo "### Can't make "'"'$d'"'
	}
done
