xref: /OK3568_Linux_fs/buildroot/board/forlinx/ok3568/fs-overlay/usr/share/matrix-gui-2.0/execute-command.php (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1
2<?php
3
4$command = $_GET['command'];
5$output = shell_exec($command);
6
7echo $output;
8
9?>
10