Re: utility that will dump a web page to std out?

2005-06-24 Thread J. Johnston
David Kelly wrote: On Mon, Jun 20, 2005 at 08:05:48AM -0500, Brian John wrote: Hello, Does anyone know of a utility that will get a webpage and dump the output to standard out? I was going to use wget, but it dumps the output to a file. Any ideas? fetch -o - http://url curl

Re: utility that will dump a web page to std out?

2005-06-21 Thread Frederic Andres
you can also use Lynx with the -dump option. Fred Quoting David Kelly [EMAIL PROTECTED]: On Mon, Jun 20, 2005 at 08:05:48AM -0500, Brian John wrote: Hello, Does anyone know of a utility that will get a webpage and dump the output to standard out? I was going to use wget, but it dumps the

utility that will dump a web page to std out?

2005-06-20 Thread Brian John
Hello, Does anyone know of a utility that will get a webpage and dump the output to standard out? I was going to use wget, but it dumps the output to a file. Any ideas? Thanks /Brian ___ freebsd-questions@freebsd.org mailing list

Re: utility that will dump a web page to std out?

2005-06-20 Thread Mantas Smelevicius
--output-document=/dev/cuaa0 for example not work? On 6/20/05, Brian John [EMAIL PROTECTED] wrote: Hello, Does anyone know of a utility that will get a webpage and dump the output to standard out? I was going to use wget, but it dumps the output to a file. Any ideas? Thanks /Brian

Re: utility that will dump a web page to std out?

2005-06-20 Thread agerber
Hello, Does anyone know of a utility that will get a webpage and dump the output to standard out? I was going to use wget, but it dumps the output to a file. Any ideas? Thanks /Brian Lynx is pretty easy to use for this: lynx -dump http://www.google.com -- Alan Gerber

Re: utility that will dump a web page to std out?

2005-06-20 Thread David Kelly
On Mon, Jun 20, 2005 at 08:05:48AM -0500, Brian John wrote: Hello, Does anyone know of a utility that will get a webpage and dump the output to standard out? I was going to use wget, but it dumps the output to a file. Any ideas? fetch -o - http://url -- David Kelly N4HHE, [EMAIL

Re: utility that will dump a web page to std out?

2005-06-20 Thread Björn König
Yet some other solutions: with bash: ( printf 'GET / HTTP/1.0\n\n' 3 cat 03 ) 3 /dev/tcp/www.freebsd.org/80 with netcat: printf 'GET / HTTP/1.0' | nc www.freebsd.org 80 Björn ___ freebsd-questions@freebsd.org mailing list