find <directoryPath> -type d -empty | xargs rmdir
Or, alternatively:
find <directoryPath> -empty -type d -delete
(note that the -delete option implies -depth)
Insights into building a solid I.T. foundation in the mid-size business world.
find <directoryPath> -type d -empty | xargs rmdir
Or, alternatively:
find <directoryPath> -empty -type d -delete
(note that the -delete option implies -depth)
Leave a Reply