Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save imweijh/dead24fe1665ecde32e0ecfe4f675df8 to your computer and use it in GitHub Desktop.
Save imweijh/dead24fe1665ecde32e0ecfe4f675df8 to your computer and use it in GitHub Desktop.
Recursively create an empty index.html file in all directories which currently do not have one.
# run this command in the root web directory
find . -type d -exec touch {}/index.html \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment