Last active
November 21, 2025 19:04
-
-
Save jeffmatts/188b7e2ef0be8611f8209470ca0b7f70 to your computer and use it in GitHub Desktop.
Remove all node_modules directories on Mac OS
This file contains hidden or 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
| # Exclude the ~/dev/github directory | |
| # Preview | |
| find "$HOME/dev" \ | |
| -type d -name node_modules \ | |
| -prune \ | |
| -not -path "$HOME/dev/github/*" \ | |
| # Remove | |
| find "$HOME/dev" \ | |
| -type d -name node_modules \ | |
| -prune \ | |
| -not -path "$HOME/dev/github/*" \ | |
| -exec rm -vrf {} + |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment