grep for certain files using a file as input to grep and then move

Hi All, I need to grep few files which has words like the below in the file name , which i want to put it in a file and and grep for the files which contain these names and move it to a new directory ,

full file name -C20091210.1000-20091210.1100_SMGBSC3:1000 ,C20091210.1000-20091210.1100_LUD2:1000 ,

input file for grep SMGBSC3 LUD2 KSLI JIND ,

any help would be apprecaited .thanks

Please explain the problem clearly with an example

#!/usr/bin/awk
BEGIN {
FS = ",";
}

for field in inputFile
{
find . -name *field* | mv {} outputDir
}