#!/bin/bash ##본 script 파일명 SCRIPT_NAME=`basename $0` function help() { echo echo "Usage: ${SCRIPT_NAME} <svn_repo>" echo echo "Parameters:" echo " <svn_repo> - svn repository root dir" echo echo "Examples:" echo " ${SCRIPT_NAME} /opt/test04" echo exit -1 } # parameter min 1 if [ ! $# -ge 1 ]; then help fi # parameter setting PATH_TO_REPO=$1 # Check if they ..