> 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
> 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