Recursively chmod

/dev/movabletripe » Recursively chmod directories only

html

find . -type f -name ‘*.htm*’ -exec chmod 644 {} \;

ignore directories

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

directories only

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

Comments are closed.