Skip to content

Instantly share code, notes, and snippets.

@naazeri
Last active February 20, 2025 09:13
Show Gist options
  • Save naazeri/cc36d8629ddf3255b8a6d3864472b44c to your computer and use it in GitHub Desktop.
Save naazeri/cc36d8629ddf3255b8a6d3864472b44c to your computer and use it in GitHub Desktop.
Generate Directory Structure Tree Command
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