Skip to content

Instantly share code, notes, and snippets.

@gmoraiz
Last active December 20, 2023 16:15
Show Gist options
  • Save gmoraiz/12719e2d48eaf76b8db7c28e47f6e8db to your computer and use it in GitHub Desktop.
Save gmoraiz/12719e2d48eaf76b8db7c28e47f6e8db to your computer and use it in GitHub Desktop.
command to remove all node_modules directories inside current directory
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