icingaweb2/bin/sample.php

20 lines
346 B
PHP
Raw Normal View History

2013-06-03 17:05:59 +02:00
#!/usr/bin/php
<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
2013-06-03 17:05:59 +02:00
set_include_path(
realpath(dirname(__FILE__) . '/../library/')
. ':'
. get_include_path()
2013-06-03 17:05:59 +02:00
);
require_once 'Icinga/Application/Cli.php';
use Icinga\Application\Cli;
use Icinga\Util\Format;
2013-06-03 17:05:59 +02:00
$app = Cli::start();
echo Format::bytes(10930423) . "\n";