Trying to pipe list of images from find to identify and I get no output.
Using this command, I get no results.
find . -iname "*.jpg" -type f | identify -format '%w:%h:%i'
However, if I use this command, which doesn't use a pipe but instead uses find's -exec
option it works normally.
find . -iname "*.jpg" -type f -exec identify -format '%w:%h:%i\n' '{}' \;
Does anyone know why this is happening and how to use pipe properly instead of find -exec
?