Last active
April 21, 2023 06:14
-
-
Save bhumit070/81c2dce053aa4c83ea7af93f0a0fe7f1 to your computer and use it in GitHub Desktop.
Delete All node_modules in directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -name "node_modules" -type d -prune | xargs du -chs # to check how much space node_modules is taking | |
find . -name "node_modules" -type d -prune | xargs rm -rf # to remove node_modules |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment