Add console executables

This commit is contained in:
Hypolite Petovan 2018-03-18 05:12:39 -04:00
vecāks 9b8fb1d550
revīzija dcf2ed26bb
3 mainīti faili ar 23 papildinājumiem un 0 dzēšanām

10
bin/console Normal file
Parādīt failu

@ -0,0 +1,10 @@
#!/bin/sh
dir=$(cd "${0%[/\\]*}" > /dev/null; pwd)
if [[ -d /proc/cygdrive && $(which php) == $(readlink -n /proc/cygdrive)/* ]]; then
# We are in Cgywin using Windows php, so the path must be translated
dir=$(cygpath -m "$dir");
fi
php "${dir}/console.php" "$@"

4
bin/console.bat Normal file
Parādīt failu

@ -0,0 +1,4 @@
@echo OFF
:: in case DelayedExpansion is on and a path contains !
setlocal DISABLEDELAYEDEXPANSION
php "%~dp0console.php" %*

9
bin/console.php Normal file
Parādīt failu

@ -0,0 +1,9 @@
#!/bin/env php
<?php
include_once dirname(__DIR__) . '/boot.php';
$a = new Friendica\App(dirname(__DIR__));
\Friendica\BaseObject::setApp($a);
(new Friendica\Core\Console())->execute();