@@ -88,11 +88,19 @@ case "$CMD" in
exit
;;
list)
- find_unlistened --in=here
+ if [ $# -lt 1 ] ; then
+ find_unlistened --in=here
+ else
+ find_unlistened --in=here | grep $@
+ fi
list-all)
- find_unlistened
+ find_unlistened
+ find_unlistened | grep $@
play)