...
find . -name '*.mp3' -o -type d -printf '%h\n' | sort | uniq > non-empty-dirs.tmp
find . -type d -print | sort | uniq > all-dirs.tmp
comm -23 all-dirs.tmp non-empty-dirs.tmp > dirs-to-be-deleted.tmp
less dirs-to-be-deleted.tmp
cat dirs-to-be-deleted.tmp | xargs rm -rf
, , , ( ), ...
...
: , , , - mp3 - , , . , .
, , , , . , ...
, , mp3 , :
find . -name '*.mp3' -printf '%h\n' | sort | uniq
" , .mp3, ".
, , , , ...
find . -type d -printf '%h\n' | sort | uniq
: " , ".
, , , . .
find . -name '*.mp3' -o -type d -printf '%h\n' | sort | uniq > non-empty-dirs.tmp
, , , .
find . -type d -print | sort | uniq > all-dirs.tmp
, , , , - , . ? , :
comm -23 all-dirs.tmp non-empty-dirs.tmp > dirs-to-be-deleted.tmp
, , , , xargs rm, .
cat dirs-to-be-deleted.tmp | xargs rm -rf