Linux下面分别给文件和文件夹赋权限chmod

添加评论 2011年6月22日
 

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

find . -type d 文件夹
find . -type f 文件

评论被关闭了