Last active
July 29, 2024 06:12
-
-
Save corysolovewicz/55b67fa3e1315b653c0552572e9e86b2 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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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