Home / Notes / wget Notes
=========================
Output Urls to STDOUT with wget:
It is possible to have wget to ouput the content of a [url] to
STDOUT (like curl) using a Bourne-like shell on systems that
support the /dev/fd filesystem:
( exec 6>&1 ; wget -O /dev/fd/6 [url] 2>/dev/null ; exec 6>&- )