#!/bin/bash
#ARGS 
# $1 host 
# $2 existing/starting directory
# $3 - $n new subdirectories to create 
. functions
if [ $2 == "#none" ]
then
	echo ABORTING - nothing to do
	exit
fi
ftp_mkdir_recurse $@
