#!/bin/sh
INSTALLPERMS=$1
DESTDIR=`echo$2| sed 's/\/\//\//g'`shiftshiftfor dir in $@;do
DIRNAME=`echo$dir| sed 's/\/\//\//g'`if[ !-d$DESTDIR/$DIRNAME];thenmkdir-m$INSTALLPERMS-p$DESTDIR/$DIRNAMEfiif[ !-d$DESTDIR/$DIRNAME];thenecho"Failed to make directory$DESTDIR/$DIRNAME"exit1fidone