find command
1. find -exec
{} +
will try to execute the command over the (set of) all arguements (if possible). This is similar to what xargs does{} \;
will try to execute the command for each argument{}
means "substitute with the result of the find"- see here