5 lines
128 B
Bash
Executable file
5 lines
128 B
Bash
Executable file
#!/bin/sh
|
|
# recursively delete empty directories
|
|
find . -depth \
|
|
-path "." -prune -or \
|
|
-type d -empty -exec rmdir -v {} \;
|