linux下递归改变所有子目录的属性
时间:2014-08-31 01:56 来源:linux.it.net.cn 作者:it
linux下递归改变所有子目录的属性
chmod 644 -R *
chmod 755 `find -type d`
find /path -type f -exec chmod 644 {} \;
find /path -type d -exec chmod 755 {} \;
(责任编辑:IT)
linux下递归改变所有子目录的属性 chmod 644 -R * chmod 755 `find -type d` find /path -type f -exec chmod 644 {} \; find /path -type d -exec chmod 755 {} \; (责任编辑:IT) |