#!/bin/sh
# show images with faces in dir
see $(for img in *.jpg ; do if [ "`facedetect $img`" != "" ] ; then echo $img ; fi ; done)
