With this set of commands, what are the {} and \\; characters for?
{}
\\;
find . -name \'*.clj\' -exec grep -r resources {} \\;
The character string "{}" will be replaced by the current file being processed. The escaped semi-colon terminates the command argument for the -exec option.