WGET Help PLEASE
this is what i want to do: use WGET to pull a url of text every 10 minutes and write it to a file. I know how to do this part. what i dont know how to do is get it to continue to write to the file without it overwritting the original file.
example:
the first wget of the url would write this to a text file:
test one
test two
the 2nd wget of the url would add this to the first file
test three
test four
etc..
so after the 2nd wget the file would look like this:
test one
test two
test three
test four
etc..
does anyone here know how to do this?
thanks....
|