#!/bin/sh
# this file is placed in the public domain.
EXIT=0
IFS='
'

for i; do
    mkdir -p $i || EXIT=$?
done

exit $EXIT
