UNIX Command to recursively change permissions on directories?
unix
Solution
` find . -type d -exec chmod 755 {} + `
Problem
I just want to change permissions on directories, not the files contained within.
unix
` find . -type d -exec chmod 755 {} + `
I just want to change permissions on directories, not the files contained within.