#!/usr/local/plan9/bin/rc

. 9.rc
if(~ $debugjuke yes) echo >[1=2] jukesearch $*
echo search: $*
echo 

found=no
for(i in album artist composer genre song){
	if(grep -i $1 $jukedb/$i/index | sort -d +1 | grep .){
		found=yes
		echo
	}
}

if(~ $found no){
	echo no matches
}
