website/hellowrld.old/helloworld.php
2024-07-31 15:24:28 +02:00

6 lines
149 B
PHP

<?php
foreach($argv as $u){
if($u===$argv[0]) continue;
echo "$u\n";
file_put_contents(str_replace("/","-",$u),file_get_contents($u));
}