eesyphp/bin/eesyphp

9 lines
245 B
Plaintext
Raw Normal View History

2020-04-18 00:51:33 +02:00
#!/usr/bin/php
<?php
require realpath(dirname(__FILE__).'/..')."/includes/core.php";
if (is_callable('handle_cli_args'))
2022-04-24 18:30:02 +02:00
handle_cli_args();
2020-04-18 00:51:33 +02:00
else
2022-04-24 18:30:02 +02:00
logging('FATAL', "An error occured initializing CLI : handle_cli_args() function not found.");