- Code: Select all
find ./ -type d -print0|xargs -0 chmod 770
find ./ -type f -print0|xargs -0 chmod 660
find ./ -type d -print0|xargs -0 chmod 770
find ./ -type f -print0|xargs -0 chmod 660averk wrote:chmod for files / directories only:
- Code: Select all
find ./ -type d -print0|xargs -0 chmod 770
find ./ -type f -print0|xargs -0 chmod 660
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;Users browsing this forum: No registered users and 3 guests