[linux][bsd] 空ディレクトリだけを削除する

findには-emptyなんてオプションがあった

$ find . -type d -empty

しかも-deleteなんてオプションもあった

$ find . -type d -empty -delete