Earlier, we looked at creating thousands of empty directories. Today, we’re going to get rid of them. But we need to get rid of only empty directories. To do so, we’ll use the find command:
find . -depth -type d -empty -exec rmdir {} \;
Now, we can put both into a script:
mkdir $(printf '%05d\n' {1..10000})
find . -depth -type d -empty -exec rmdir {} \;