Skip to content

Instantly share code, notes, and snippets.

@andresdhn
Created January 14, 2020 02:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andresdhn/516e8196a229798b243365f6007f5e7e to your computer and use it in GitHub Desktop.
Save andresdhn/516e8196a229798b243365f6007f5e7e to your computer and use it in GitHub Desktop.
Rename files within multiple folders
<?php
chdir("slides");
$slides = explode("\n", shell_exec("ls"));
foreach ($slides as $slide) {
echo $slide;
if ($slide) {
chdir("$slide");
shell_exec("mv $slide.html index.html");
chdir("..");
}
}
chdir("..");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment