HN user

rp2

2 karma
Posts0
Comments1
View on HN
No posts found.
    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.