方法1:
find /path -type f -exec chmod 644 {} \;
find /path -type d -exec chmod 755 {} \;
方法2:
chmod -R 644 *
find /path -type d -exec chmod 755 {} \;
方法1 直接用find来区别文件和目录
方法2则先设置所有的文件权限为644 ,再通过find来设置目录的权限。
方法1:
find /path -type f -exec chmod 644 {} \;
find /path -type d -exec chmod 755 {} \;
方法2:
chmod -R 644 *
find /path -type d -exec chmod 755 {} \;
方法1 直接用find来区别文件和目录
方法2则先设置所有的文件权限为644 ,再通过find来设置目录的权限。
评论 (0)