我正在尝试将所有文件夹和子文件夹(目录)设置为 755,并将文件夹和子文件夹包含的所有文件设置为 644。
我不知道如何通过 1-2 个命令来实现这一点。这可能吗?
答案1
是的你可以...
此命令将所有目录设置为权限 755
find /your/selected/dir -type d -exec chmod 755 {} \;
将所有文件的权限设置为 644
find /your/selected/dir -type f -exec chmod 644 {} \;
为了更好地理解这个命令,我建议使用 ExplainShell:http://explainshell.com/