utility that will dump a web page to std out?

Björn König bkoenig at cs.tu-berlin.de
Mon Jun 20 21:02:01 GMT 2005


Yet some other solutions:

with bash:

( printf 'GET / HTTP/1.0\n\n' >&3 & cat 0<&3 ) 3<> 
/dev/tcp/www.freebsd.org/80

with netcat:

printf 'GET / HTTP/1.0' | nc www.freebsd.org 80


Björn


More information about the freebsd-questions mailing list