#! /bin/zsh -f LC_ALL=C if [[ -z ${1} ]] ; then printf 'Usage: %s \n' "${0}" exit 1 fi if [[ ! -r ${1} ]] ; then printf 'failed to open %s, giving up.\n' "${1}" exit 2 fi source ${1} tdir=${template:h} if [[ ! -d ${tdir} ]] ; then printf '%s not available, giving up.\n' exit 3 fi cp -R templates/zblog0 ${tdir} exit 0