[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: find -exec



> find . -exec chmod u+wx {} -type f

The -exec portion of the command must be terminated by `;', which must
also be escaped to the shell.  As in:

     find . -exec chmod u+wx {} \; -type f


Reply to: