#!/bin/ksh

LIST="CustomAnalysisService.class"

for i in ${LIST}
do
  cp $A/${i} .
  echo "Copied ${A}/${i}"
done
