How do I use find to locate files and run a command on the found files?
        by Geethalakshmi[ Edit ] 2010-05-30 03:29:02 
         
        
        	How do I use find to locate files and run a command on the found files?
Use the the -exec  '{}' \; parameters:
find ./ -name "*.$$$" -exec chmod +w '{}' \;