首页 > 技术文章 > linux,chmod如何更改所有子目录的权限,要包括隐藏文件

perfy 2016-01-27 20:02 原文

for file in `find . -print` 
do
chmod 777 -R $file
done

推荐阅读