Files
dynamic-status/fsfe-build.php

9 lines
171 B
PHP

<?php
$command = "/bin/bash fsfe-build.sh https://status.fsfe.org/fsfe.org";
// Execute command and give output
$output = shell_exec($command);
echo "$output";
?>