I am trying to view an image automatically on a site. The following will download the desired image file successfully:

wget $(wget -O - myURL | grep myPattern | sed myScript)

When I try piping to feh using

wget -O - $(wget -O - myURL | grep myPattern | sed myScript) | feh

I get

Cannot write to `-' (Broken pipe).

Doing

wget -O - $(wget -O - myURL | grep myPattern | sed myScript)

will output a lot of gibberish to stdout which I am assuming is the image file, so my conclusion is that feh can not read from a pipe, and looking at the man page seems to indicate this is true. Can this be solved somehow or do I need another tool? If I do, I would prefere as small a tool as possible.

I had a look at a question resembling this slightly, Trouble with piping through sed but not sure how similar this is. I did try the --unbuffered option with sed, it didnt work and I am not sure I would understand it if it did work.

link|improve this question
After playing around with it, I found that it won't accept data from stdin in any way. – Dennis Williamson Dec 5 '10 at 1:41
feedback

2 Answers

ImageMagick's display can take images from stdin.

link|improve this answer
feedback

Have you tried running feh - instead of feh?

link|improve this answer
1  
And if that doesn't work, feh /dev/stdin is worth a try. – Dennis Williamson Dec 5 '10 at 1:22
Tried both but no luck. Looks like feh doesn't support reading images from stdin – Naga Kiran Jun 20 '11 at 18:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.