3 lines
99 B
Bash
Executable file
3 lines
99 B
Bash
Executable file
#!/bin/sh
|
|
# recursively delete empty directories
|
|
find . -depth -type d -empty -exec rmdir -v {} \;
|