mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 02:01:33 +00:00
12 lines
309 B
PHP
12 lines
309 B
PHP
<?php
|
|
|
|
require_once dirname(__DIR__, 4).DIRECTORY_SEPARATOR.'bootstrap/autoload.php';
|
|
|
|
use Blacklight\ConsoleTools;
|
|
|
|
// 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]);
|
|
}
|