Skip to content

Instantly share code, notes, and snippets.

@agmm
Created September 4, 2019 21:47
Show Gist options
  • Save agmm/b41b78d965c06c24d9c7d7e5e17504e2 to your computer and use it in GitHub Desktop.
Save agmm/b41b78d965c06c24d9c7d7e5e17504e2 to your computer and use it in GitHub Desktop.
Command to delete 'node_modules' in all subdirectories

find . -name "node_modules" -type d -prune -exec rm -rf '{}' +

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment