Skip to content

Instantly share code, notes, and snippets.

@vguhesan
Created June 1, 2025 16:22
Show Gist options
  • Save vguhesan/b0e39e3ffa5744ade12c87a367833a7d to your computer and use it in GitHub Desktop.
Save vguhesan/b0e39e3ffa5744ade12c87a367833a7d to your computer and use it in GitHub Desktop.
Prune / Remove all contents of node-modules directory in all subdirectories below current working directory
#!/bin/bash
# Delete all node_modules directories recursively
find . -type d -name "node_modules" -print0 | xargs -0 rm -rf
echo "All node_modules directories deleted."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment