On Friday 13 December 2002 04:44 pm, Kyle Faber wrote: > Almost exactly what I needed. Is there a way to direct the output of that > command to stdout instead of to a local file? Try this (all on one line, sigh): ( printf "GET /some/urlpath.html / HTTP/1.0\n\n" ; sleep 10s ) | telnet 80 somesite.com | grep "some string" This will work for most major sites (those that do not use name-based resolution to have multiple sites on one host). For name based ones, you might need to use HTTP 1.1 to get your data. Do something like this (from one of my own scripts): ---- snippet start ---- cat >/tmp/blognot.$$ <