> Linux教程 > linux基础 >

linux下递归改变所有子目录的属性

 linux下递归改变所有子目录的属性

  chmod 644 -R *

  chmod 755 `find -type d`

  find /path -type f -exec chmod 644 {} \;

  find /path -type d -exec chmod 755 {} \;

(责任编辑:IT)