将path路径下的所有文件夹改成755
find path -d | xargs chmod -v 755
将path路径下的所有文件改成644属性
find path -f | xargs chmod -v 644