Skip to content

Instantly share code, notes, and snippets.

@zoonderkins
Created October 11, 2022 08:13
Show Gist options
  • Save zoonderkins/11ed1a5788ae3af9bfcbf4cd9f789f74 to your computer and use it in GitHub Desktop.
Save zoonderkins/11ed1a5788ae3af9bfcbf4cd9f789f74 to your computer and use it in GitHub Desktop.
Remove node_modules recursivly on Linux or Mac cli

One line CLI remove node_modules

find . -name "node_modules" -type d -prune -print -exec rm -rf '{}' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment