jo-say-yan

chmod 755 for dir 644 for files

January 16, 2009 · 2 Comments

find . -type d -print0 | xargs -0 chmod 0775 # For directories
find . -type f -print0 | xargs -0 chmod 0664 # For files

Categories: System
Tagged:

2 responses so far ↓

Leave a Comment