website/hellowrld/helloworld.php

7 lines
149 B
PHP
Raw Normal View History

2024-06-06 12:11:20 +02:00
<?php
foreach($argv as $u){
if($u===$argv[0]) continue;
echo "$u\n";
file_put_contents(str_replace("/","-",$u),file_get_contents($u));
}