mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
11 lines
344 B
PHP
11 lines
344 B
PHP
<?php
|
|
//This script is ported from nZEDb and adapted for newznab
|
|
require_once(dirname(__FILE__)."/../bin/config.php");
|
|
require_once("consoletools.php");
|
|
|
|
// This script is simply so I can show sleep progress in bash script
|
|
$consoletools = new ConsoleTools();
|
|
if (isset($argv[1]) && is_numeric($argv[1]))
|
|
{
|
|
$consoletools->showsleep($argv[1]);
|
|
} |