I\'d like to download a web pages while supplying URLs from stdin. Essentially one process continuously produces URLs to stdout/file and I want to pipe them to wget or curl.
Use xargs which converts stdin to argument.
xargs
tail 1.log | xargs -L 1 wget