#!/bin/sh

# “mkdir -p” work-alike that sets permissions on the target and all
# intermediate directories to 0755.

umask 0022
mkdir -p "$@"