On Wed, Nov 02, 2005 at 05:30:18PM -0800, Bryce Harrington wrote:
On Wed, Nov 02, 2005 at 09:25:25PM -0400, bulia byak wrote:
On 11/2/05, MenTaLguY <mental@...3...> wrote:
I could live with this compromise.
Me too, but I'd still like to have a personal copy of all logs from the very beginning, if possible.
I'll give fair warning before putting in any requests to delete things, if we decide to go this route.
Btw, with the robots.txt file in place, I found that it's now impossible to recursively snag all the logs. Here's a quick hack perl script I did to get around that limitation so I could get last month's logs:
#!/usr/bin/perl my $day = 31; while ($day > 0) { `wget http://inkscape.gristle.org/2005-10-$day.txt%60; $day = sprintf("%02d", $day-1); }
Or if you want the whole shebang, you can make wget ignore robots.txt by putting "robots = off" in .wgetrc, and then using wget -m. (Thanks AC)
Bryce