Let\'s say I have a list of IPs coming into a log that I\'m tailing:
1.1.1.1 1.1.1.2 1.1.1.3
I\'d like to easily resolve them to host names. I
Use xargs -l:
xargs -l
tail -f access.log | xargs -l host