CHMOD recursively
Time to time I come across this problem when I have to move large portions of directories and files from one location to another. Mostly after extracting from tar archives. The directory/file permissions are often messed up depending on the source I copied them or based on the way I copied/archived them. So I used to use this technique to CHMOD directories and files recursively. Today when I was using this I thought of blogging it for my own future reference. If there is a better way feel free to comment.
CHMOD directories only
find . -type d -exec chmod 755 {} \;
CHMOD files only
find . -type f -exec chmod 644 {} \;
If you enjoyed this post, please consider to leave a comment or subscribe to the feed and get future articles delivered to your feed reader.









I'm sure you have tried chmod -R [directory]
yes of course. Thats quite basic considering if want to CHMOD both dirs and files. But the case is bit different here since sometimes I only want to CHMOD the directories not the files. In this case I find this option handy
Thanks! Was searching for this for long.
This is a cool trick.
Thanks.