> is there an easy way to do a wget, and have the results > appended to a file. > (an existing file?) > > couldn't figure it out from the manpages... > > thanks > > -bruce > > wget -O- http://www..... >> target_file The -O- tells wget to write its output to stdout. -O is the parameter the second - says use stdout, which is a standard Unix notation. Bob Styma