Skip to content

Instantly share code, notes, and snippets.

@allain
Created May 9, 2019 13:51
Show Gist options
  • Save allain/a79dcf8b85422fa5b93f59c2e90dece5 to your computer and use it in GitHub Desktop.
Save allain/a79dcf8b85422fa5b93f59c2e90dece5 to your computer and use it in GitHub Desktop.
remove all node_modules recursively
#!/bin/bash
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