#! /bin/sh
# /usr/local/bin/cpConf: Copy all files from $1 to $2
#
#

CUR_DIR=`pwd`
cd $1
for i in *
do
	cp $i $2/.
done

