Files
2026-02-11 22:03:44 +01:00

18 lines
305 B
PHP

<?php
use Nih\CommandBuilder\Command;
use Nih\CommandBuilder\Stdio;
require_once __DIR__ . '/../vendor/autoload.php';
$echo = (new Command('echo'))
->arg('Hello, World!')
->stdout(Stdio::piped())
->spawn();
(new Command('cat'))
->stdin($echo->stdout)
->status();
// Hello, World!