Skip to content

Instantly share code, notes, and snippets.

@yevhenorlov
Last active May 12, 2019 10:38
Show Gist options
  • Save yevhenorlov/f01eadbc55f42b7dbfb9a2dfbcee528f to your computer and use it in GitHub Desktop.
Save yevhenorlov/f01eadbc55f42b7dbfb9a2dfbcee528f to your computer and use it in GitHub Desktop.
remove node_modules recursively starting from current folder
# remove node_modules recursively starting from current folder
find . -name "node_modules" -exec rm -rf '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment