I love xargs. It's like the unix supertool. If you have any filenames with spaces though it can confuse xargs so it's often better to do.
Code:
find <conditions> -print0 |xargs -0 <command>
The print0 separates the find output with null characters and the -0 (a numeric zero not a capital O) option on xargs tells it to split on nulls.