[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] chmod question
- Subject: [ale] chmod question
- From: phasefx at magusaptus.com (Jason Etheridge)
- Date: Mon Jun 7 12:26:16 2004
- In-reply-to: <[email protected]>
- References: <[email protected]>
> Is there a way to use chmod recursively where it will only change the
> permissions on the files and not the directories? chmod -R changes
> everything thus making the directories non-traversable.
find . -type f -exec chmod 666 {} \;
That should work. Type f refers to regular files.
-- Jason