20 lines
319 B
20 lines
319 B
#!/usr/bin/php -q
|
|
<?php
|
|
|
|
//to query the local PmWiki via the CLI
|
|
|
|
if (!chdir("~/web/benetou.fr/fabien/"))
|
|
die("chdir failed.");
|
|
|
|
if ($argc > 0)
|
|
{
|
|
for ($i=1;$i < $argc;$i++)
|
|
{
|
|
parse_str($argv[$i],$tmp);
|
|
$_REQUEST = array_merge($_REQUEST, $tmp);
|
|
}
|
|
}
|
|
|
|
require_once '~/web/benetou.fr/fabien/pmwiki.php';
|
|
|
|
?>
|
|
|