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 {} \;
/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 {} \;
You must be logged in to post a comment.