Where I keep Linuxisms I want to remember.
# Find all empty files and/or folders recursively
find -depth -empty
# Find all empty folders, only recurse two levels
find -maxdepth 2 -depth -empty -type d
# Delete what you find
find -maxdepth 2 -depth -empty -type d -delete
No comments:
Post a Comment