#
. ./l.props
if[ -z "$1"];thenecho"Enter 'user:group' for the directory after creation"read CHOWN
elseCHOWN="$1"fifor D in $INSTALL_DIR$ORG_DIR;doif[ -e $D];thenecho"$D already exists"else
mkdir -p $Decho"$D created"fiecho"Setting Ownership of $D to $CHOWN"
chown $CHOWN$Ddone