diff --git a/4plebs_data_dump_download.sh b/4plebs_data_dump_download.sh index 3066bbd..69b8aa0 100755 --- a/4plebs_data_dump_download.sh +++ b/4plebs_data_dump_download.sh @@ -1,7 +1,7 @@ #!/bin/bash echo "4plebs.org data dump download script" echo -echo " This will take around 28GB of hard drive space. All downloads will go to current working directory." +echo " This will take around 37GB of hard drive space. All downloads will go to current working directory." echo read -p " Are you sure? [y/n] " -n 1 -r echo @@ -10,8 +10,8 @@ if [[ ! $REPLY =~ ^[Yy]$ ]] then [[ "$0" = "$BASH_SOURCE" ]] && exit 1 || return 1 else - for board in adv f film hr mlpol mo o pol s4s sp tg trv tv x + for board in adv f hr o pol s4s sp tg trv tv x do - wget -c https://archive.org/download/4plebs-org-data-dump-2018-01/${board}.csv.tar.gz; + wget -c https://archive.org/download/4plebs-org-data-dump-2019-01/${board}.csv.tar.gz; done fi diff --git a/4plebs_full_image_dump_download.sh b/4plebs_full_image_dump_download.sh index 4cb3363..e14d058 100755 --- a/4plebs_full_image_dump_download.sh +++ b/4plebs_full_image_dump_download.sh @@ -11,9 +11,9 @@ then [[ "$0" = "$BASH_SOURCE" ]] && exit 1 || return 1 else urip="https://archive.org/download/4plebs-org-image-dump-20"; -year=18; +year=19; wget -r -l1 -H -nd -N -np -A.tar.gz ${urip}${year}-01; -for part in {2..9} +for part in {2..11} do wget -r -l1 -H -nd -N -np -A.tar.gz ${urip}${year}-01-part${part}; done diff --git a/4plebs_thumbnail_image_dump_download.sh b/4plebs_thumbnail_image_dump_download.sh index eb0b343..58cd42b 100755 --- a/4plebs_thumbnail_image_dump_download.sh +++ b/4plebs_thumbnail_image_dump_download.sh @@ -1,7 +1,7 @@ #!/bin/bash echo "4plebs.org thumbnail image dump download script" echo -echo " This will take around 78GB of hard drive space. All downloads will go to current working directory." +echo " This will take around 104GB of hard drive space. All downloads will go to current working directory." echo read -p " Are you sure? [y/n] " -n 1 -r echo @@ -10,8 +10,8 @@ if [[ ! $REPLY =~ ^[Yy]$ ]] then [[ "$0" = "$BASH_SOURCE" ]] && exit 1 || return 1 else - for board in adv f film hr mlpol mo o pol s4s sp tg trv tv x + for board in adv f hr o pol s4s sp tg trv tv x do - wget -c https://archive.org/download/4plebs-org-thumbnail-dump-2018-01/${board}_thumbs.tar.gz; + wget -c https://archive.org/download/4plebs-org-thumbnail-dump-2019-01/${board}_thumbs.tar.gz; done fi