Files
newznab-tmux/bin/innodb/backfill.php
T
2013-01-12 23:39:27 -05:00

15 lines
233 B
PHP
Executable File

<?php
require("lib/innodb/config.php");
require_once("lib/backfill.php");
if (isset($argv[1]))
$groupName = $argv[1];
else
$groupName = '';
$backfill = new Backfill();
$backfill->backfillAllGroups($groupName);
?>