in reply to Find all JPEG files in a directory

you can use the file command to obtain the type of the files:
$ file -i /foo/bar/* | perl -ne 'print "$1\n" if /(.*):\s*image\/jpeg$ +/'