Serv00重置系统命令
-
更改权限:
find ~ -type f -exec chmod 644 {} \; 2>/dev/null find ~ -type d -exec chmod 755 {} \; 2>/dev/null
-
删除文件:
find ~ -type f -exec rm -f {} \; 2>/dev/null
-
删除空目录:
find ~ -type d -empty -exec rmdir {} \; 2>/dev/null
-
再次尝试删除剩余的文件和目录:
find ~ -exec rm -rf {} \; 2>/dev/null