Files
oddmuse/contrib/example-maintenance.pl
Alex Schroeder 115145017a More files moved to contrib and scripts
Also, added README files.
2015-04-02 23:14:10 +02:00

11 lines
356 B
Perl
Executable File

#!/usr/bin/perl
$dir = "/org/org.emacswiki/htdocs";
opendir(DIR, $dir) || die "can't opendir $dir: $!";
@names = grep { /^[a-z]+$/ && -d "$dir/$_" && -d "$dir/$_/keep" } readdir(DIR);
closedir DIR;
for $f (@names) {
system('wget', '-O', "/org/org.emacswiki/htdocs/maintenance/$f.html",
"http://www.emacswiki.org/cgi-bin/$f?action=maintain");
}