使用 find 和 xargs 快速并行删除空目录
以下命令将递归查找并删除当前目录树中的空目录。它使用 xargs 并行执行
remove_empty_dirs.sh
find . -depth -type d -print0 | xargs -0 -n32 -P32 rmdir -vCheck out similar posts by category:
Linux
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow