Kraken\Util\System\SystemUnix::run PHP Method

run() public method

public run ( $command )
    public function run($command)
    {
        $command = $command . '>/dev/null 2>&1 & echo $!';
        if ($this->isolator !== null) {
            return $this->isolator->call('exec', [$command]);
        } else {
            return exec($command);
        }
    }