xargs -d '\n' as in find * -type f | egrep -i '\.(gif|jpg|png)$' | xargs -d '\n' identify I used to use find -print0 | xargs -0 but sometimes you want to insert filters in between or the file names aren't from find.
xargs -d '\n' as in find * -type f | egrep -i '\.(gif|jpg|png)$' | xargs -d '\n' identify I used to use find -print0 | xargs -0 but sometimes you want to insert filters in between or the file names aren't from find.