Skip to content

Instantly share code, notes, and snippets.

@vincentorback
Last active July 10, 2020 15:10
Show Gist options
  • Save vincentorback/22876d0222507a6355a08a42399f6ca5 to your computer and use it in GitHub Desktop.
Save vincentorback/22876d0222507a6355a08a42399f6ca5 to your computer and use it in GitHub Desktop.
delete all node_modules directories
# Test
find . -name "node_modules" -type d -prune -print | xargs du -chs
# Remove
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