mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-03 11:49:03 +00:00
11 lines
365 B
PHP
11 lines
365 B
PHP
<?php
|
|
if (!isset($argv[1]) || !is_numeric($argv[1])) {
|
|
exit(
|
|
'Argument 1 => (Number) Set to 0 to ignore, else fetches up to x new headers for every active group.' . PHP_EOL
|
|
);
|
|
}
|
|
declare(ticks=1);
|
|
require __DIR__ . DIRECTORY_SEPARATOR . '.do_not_run/require.php';
|
|
use nntmux\libraries\Forking;
|
|
(new Forking())->processWorkType('binaries', array(0 => $argv[1]));
|