Last Updated: February 25, 2016
·
456
· clawfire

Apply permission recursivly on file / on folders

So you want to apply permission 644 on all files ? Just do

chmod 644 $(find . -type f)

And to apply permission 755 to all folders do

chmod 755 $(find . -type d)