How do I pipe a downloaded file to standard output in bash?
How is it possible to pipe out wget
's downloaded file? If not what alternatives should I use?
wget -O - -o /dev/null http://google.com
Or use curl, where it's the default behaviour.
curl http://www.google.com/
http://curl.haxx.se/