#!/bin/sh
#-------------------------------------------------------------------------------
# All Rights Reserved, Copyright (C) 2003, NEC Soft, Ltd.
# ++
# Facility :	
# History  :
#               2003/04/7      first written by Goro Asahina
#-------------------------------------------------------------------------------
# our $VERSION = '0.01';
TG=`echo $0 | sed 's/\/.*$//'`;CUR=`pwd`;PATH=$PATH:$CUR/$TG
#-------------------------------------------------------------------------------

if [[ $# == 1 ]]; then
	export WMS_SOURCE_CSV=$1
else
	echo "usage: wms_csv2gdb source_csv"
	exit 1;
fi

wms_callfunc.pl `/bin/basename $0`
exit $?

