Linux 设置文件夹及其子文件夹、文件权限


sudo find . -type d -exec chmod 777 {} \;
sudo find . -type f -exec chmod 777 {} \;

你可能感兴趣的:(Linux,linux,centos,ubuntu)