Skip to content

Instantly share code, notes, and snippets.

@woffleloffle
Created December 3, 2018 19:50
Show Gist options
  • Save woffleloffle/345423f2eeb60cd73bce6ee14962caec to your computer and use it in GitHub Desktop.
Save woffleloffle/345423f2eeb60cd73bce6ee14962caec to your computer and use it in GitHub Desktop.
Recursively delete all node_modules folders
find . -name "node_modules" -exec rm -rf '{}' +
FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" rm -rf "%d"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment