📌  相关文章
📜  如何在 linux 中查找空目录 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:14.943000             🧑  作者: Mango

代码示例2
find . -type d -empty # use this to find the empty files

find . -type d -empty -delete #use this to delete all empty dirctories