Keyword search input from a file

Hi,

I have a file which got only one column and got some keywords. I have another file where the keywords used in the first file are repeated in the second file.
Now I would like to know how many times each keyword from the first file is repeated in the second file.

Request your help on this.

Thanks in advance.

Regards,
Pointers

for currentrow in `cat file1`
do
echo -n "$currentrow " ;  grep $currentrow file2 | wc -l
done