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

15 lines
227 B
PHP
Executable File

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