Files
newznab-tmux/bin/showsleep.php
T
2015-04-21 18:20:38 +02:00

10 lines
285 B
PHP

<?php
//This script is ported from nZEDb and adapted for newznab
require_once ('config.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]);
}