Let's say I have a list of ip's coming into a log that i'm tailing
1.1.1.1
1.1.1.2
1.1.1.3
etc..
and i'd like to easily resolve them to host names. I'd like to be able to
tail -f access.log | host -
Which fails as host doesn't understand input from stdin in this way. What's the easiest way to do with without having to write a static file or fall back to perl/python/etc.. ?