例如.我有目录/网页,我想将所有目录设置为775,但文件为664.
有没有办法轻松做到这一点?
$find /path/to/directory -type f -print0 | xargs -0 chmod 664
对于目录:
$find /path/to/directory -type d -print0 | xargs -0 chmod 775