Last active
February 20, 2025 09:13
-
-
Save naazeri/cc36d8629ddf3255b8a6d3864472b44c to your computer and use it in GitHub Desktop.
Generate Directory Structure Tree Command
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
find . -type d \( -name "node_modules" -o -name ".next" -o -name ".git" -o -name "dist" \) -prune -o -print | awk -F/ '{print substr($0, 2, length($0)-1)}' > directory_structure.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment