mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
30 lines
543 B
PHP
30 lines
543 B
PHP
<HTML>
|
|
<HEAD>
|
|
<TITLE>Copy mLists</TITLE>
|
|
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
</HEAD>
|
|
|
|
<BODY class="background_main">
|
|
<H3>Copy mLists</H3>
|
|
<?php
|
|
function mysystem($command)
|
|
{
|
|
if (!($p=popen("($command)2>&1","r")))
|
|
{
|
|
return 126;
|
|
}
|
|
|
|
while (!feof($p))
|
|
{
|
|
$line=fgets($p,1000);
|
|
$out .= $line;
|
|
}
|
|
pclose($p);
|
|
return $out;
|
|
}
|
|
$var="../../../mlists/copymlists.sh";
|
|
echo mysystem($var);
|
|
?>
|
|
Verarbeitung erledigt!
|
|
</BODY>
|
|
</HTML>
|