Skip to content

Instantly share code, notes, and snippets.

@jeffmatts
Last active November 21, 2025 19:04
Show Gist options
  • Select an option

  • Save jeffmatts/188b7e2ef0be8611f8209470ca0b7f70 to your computer and use it in GitHub Desktop.

Select an option

Save jeffmatts/188b7e2ef0be8611f8209470ca0b7f70 to your computer and use it in GitHub Desktop.
Remove all node_modules directories on Mac OS
# Exclude the ~/dev/github directory
# Preview
find "$HOME/dev" \
-type d -name node_modules \
-prune \
-not -path "$HOME/dev/github/*" \
-print
# 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