Back to the index page  
  FAQ   Search   Memberlist   Usergroups   Register   Profile      Log in 
Recursively chmod 755 folders and 644 files

 
Post new topic   Reply to topic    The Xserve Chronicles Forum Index » Scripting View previous topic :: View next topic  
Recursively chmod 755 folders and 644 files
 PostPosted: Mon Feb 22, 2010 9:53 am Reply with quote  
Message
  dave
Site Admin

Joined: 22 Apr 2006
Posts: 54

For files:

sudo find /path/to/someDirectory -type f -print0 | xargs -0 sudo chmod 644

For folders:

sudo find /path/to/someDirectory -type d -print0 | xargs -0 sudo chmod 755
View user's profile Send private message Send e-mail
Post new topic   Reply to topic    The Xserve Chronicles Forum Index » Scripting

Page 1 of 1
All times are GMT - 8 Hours

Display posts from previous:

  

Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum