Recursively chmod directories or files


/ Published in: Bash
Save to your folder(s)

This will recursively search your directory tree (starting at dir ‘dot’) and chmod 755 all directories only.

find . -type d -exec chmod 755 {} \;


Similarly, the following will chmod all files only (and ignore the directories):

find . -type f -exec chmod 644 {} \;


Copy this code and paste it in your HTML
  1. // This will recursively search your directory tree (starting at dir ‘dot’) and chmod 755 all directories only.
  2. find . -type d -exec chmod 755 {} \;
  3.  
  4. // Similarly, the following will chmod all files only (and ignore the directories):
  5. find . -type f -exec chmod 644 {} \;

URL: http://movabletripe.com/archive/recursively-chmod-directories-only/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.