dirty-helpers/rmdir-empty

6 lines
128 B
Text
Raw Normal View History

2022-05-28 14:02:01 +02:00
#!/bin/sh
# recursively delete empty directories
find . -depth \
-path "." -prune -or \
-type d -empty -exec rmdir -v {} \;