Skip to content

Instantly share code, notes, and snippets.

@kpping
Last active December 11, 2018 04:01
Show Gist options
  • Save kpping/7054d1bdcbc7ca5c4283c1e815cfe792 to your computer and use it in GitHub Desktop.
Save kpping/7054d1bdcbc7ca5c4283c1e815cfe792 to your computer and use it in GitHub Desktop.
remove `node_modules` recursively start from current directory
#!/usr/bin/env bash
find . -name node_modules -type f -delete -print
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment