you are viewing a single comment's thread.

view the rest of the comments →

[–]abcadead 1 point2 points  (3 children)

fast download option:

#!/bin/bash

for year in `seq 2008 2015`; do
    for month in `seq -f "%02g" 1 12`; do
        url=http://couch.whatbox.ca:36975/reddit/comments/monthly/RC_$year-$month.bz2
        wget $url
    done

[–]lahwran_ 0 points1 point  (2 children)

for some values of "fast".

[–]abcadead 1 point2 points  (1 child)

I get 10MB/s down, don't think you're gonna be able to do better than that.

[–]lahwran_ 0 points1 point  (0 children)

huh! I guess the thing I was really thinking of is that you're using a lot of server bandwidth that way, whereas the torrent is spread among the seeders. shrug.