Problem in using wildcard characters in xargs with find

Hi,

Under my parent diectory I have directory named "Response" in many of its subfolders. I am interested to see all files with extention .pro in Response Directory. I am giving following command -

find . -name "Response" -type d | xargs -i ls -lrt {}/*.pro
but it is not giving result.

Please help.

try placing a back slash before it.

ie: \*

Thans Frank for ur response, but it is still not working.

find . -name "Response" -type d | xargs -i ls -lrt {}/\*.pro

above command still giving same error.

Please help.

Seems a little over complicated. Try this.

find ./Response -type f -name \*.pro -exec ls -lrt {} \;