点击数:50
linux 只修改文件或者文件夹的权限
本文地址http://yangjianyong.cn/?p=264转载无需经过作者本人授权
只修改文件夹的权限,代码:
chmod 755 `find {$path} -type d `
只修改文件的权限,代码:
chmod 644 `find {$path} -type f`
点击数:50
chmod 755 `find {$path} -type d `
chmod 644 `find {$path} -type f`