#!/bin/sh

LIBRARY="/Users/$USER/Music"

I_AM_WHERE="`dirname $0`"

DIRLIST="$I_AM_WHERE"/cohearing-list

find "$LIBRARY" -type d -mindepth 4 -print | \
  grep -v 'Album Artwork' | \
  grep -v 'Griffin Technology/iTrip' | \
  egrep -v '/(Robin|Lori)_ ' | \
  egrep -vi '(oxytocin|mazer|local midnight|emperor norton)' | \
  egrep -vi '(21m340)' | \
  egrep -vi '(opossum sessions|mythical productions|mumpower|jay lane)' | \
  egrep -vi '(Mike Agranoff/Unknown Album|Wes Carroll/Untitled)' | \
  cat > "$DIRLIST"
