diff --git a/HowTo - Beets Music Library Cleanup.md b/HowTo - Beets Music Library Cleanup.md deleted file mode 100644 index 8856f50..0000000 --- a/HowTo - Beets Music Library Cleanup.md +++ /dev/null @@ -1,17 +0,0 @@ -# Music cleanup one-liners - -## Find albums with less than 3 tracks -Useful for finding directories that contain only artwork - -```bash -NUM=3 && find /mnt/phnas02/music -maxdepth 2 -mindepth 2 -type f -printf '%h\0' | awk -v num="$NUM" 'BEGIN{RS="\0"} {array[$0]++} END{for (line in array) if (array[line]