global $pwd;
global $args;

for($i = 1; $i < count($args); $i++) {
   $file = $pwd . "/" . $args[$i];
   unlink($file);
}
