<?php
header('Content-Type: text/plain');

echo "Testing shell_exec with a trivial command...\n\n";

$output = shell_exec('echo hello');

var_dump($output);
?>
