Files
dynamic-status/fsfe-build.php
T

9 lines
171 B
PHP
Raw Normal View History

2018-05-15 08:30:24 +02:00
<?php
$command = "/bin/bash fsfe-build.sh https://status.fsfe.org/fsfe.org";
// Execute command and give output
$output = shell_exec($command);
echo "$output";
?>