[email protected] wrote: > Th following will do I think: > > find . -iname '*pdf' -type f -perm 755 -print0 \ > | xargs -0 chmod 644
Alternately, you can skip -print0 and xargs with:
find . -iname '*pdf' -type f -perm 755 -exec chmod 644 {} +
--
Todd
signature.asc
Description: PGP signature
_______________________________________________ users mailing list -- [email protected] To unsubscribe send an email to [email protected] Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/[email protected] Do not reply to spam, report it: https://pagure.io/fedora-infrastructure/new_issue
