15 lines
310 B
PHP
15 lines
310 B
PHP
<?php // exec.php
|
|
$cmd = "dir"; // Windows, Mac, Linux
|
|
// $cmd = "ls"; // Linux, Unix & Mac
|
|
|
|
exec(escapeshellcmd($cmd), $output, $status);
|
|
|
|
if ($status) echo "Exec command failed";
|
|
else
|
|
{
|
|
echo "<pre>";
|
|
foreach($output as $line) echo htmlspecialchars("$line\n");
|
|
echo "</pre>";
|
|
}
|
|
?>
|