diff options
| author | Astrid Smith | 2010-09-16 19:23:03 -0700 |
|---|---|---|
| committer | Astrid Smith | 2010-09-16 19:23:03 -0700 |
| commit | dc7e37f6627146e68e0fd6d2c102be2062a2ae0b (patch) | |
| tree | bf0a6d46a6b3a154ffcb78af231b635e7de1a45b | |
Initial commit
| -rwxr-xr-x | wikiscraper.pl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/wikiscraper.pl b/wikiscraper.pl new file mode 100755 index 0000000..6c62c4d --- /dev/null +++ b/wikiscraper.pl @@ -0,0 +1,10 @@ +#!/usr/bin/perl + +# MediaWiki -> RCS scraper + +use warnings; +use strict; + +require LWP::UserAgent; + +my $wiki = shift @ARGV; |
