Skip to content

Instantly share code, notes, and snippets.

@asciirobot
asciirobot / fetch-phpbb.pl
Created June 29, 2018 10:27 — forked from evandhoffman/fetch-phpbb.pl
Perl script to fetch all topics in a phpBB forum and save them to disk
#!/usr/bin/perl
use strict;
use warnings;
require LWP::UserAgent;
use POSIX qw/ceil/;
my $ua = LWP::UserAgent->new(agent => 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0.2) Gecko/20100101 Firefox/10.0.2');
$ua->timeout(10);