Script "recebe.php", que recebe dados enviados via http. " . $_POST['juntar']; $execucao = system($cmd); $cmd = "rm -f " . $_POST['juntar'] . ".*"; $execucao = system($cmd); $cmd = "md5sum " . $_POST['juntar'] . " | awk '{print $1}'"; $md5 = system($cmd); print $_POST['juntar'] . " : $md5"; } # atualiza data do arquivo if (!empty($_POST['touch'])) { $cmd = "touch -t " . $_POST['ts'] . " " . $_POST['touch']; $execucao = system($cmd); } ?>