klequis / coding-notebook

notes on coding issues
MIT License
0 stars 0 forks source link

Delete all instances of /node_modules #8

Open klequis opened 4 years ago

klequis commented 4 years ago

Check amount of space used by /node_modules

find . -name "node_modules" -type d -prune -print | xargs du -chs

Delete all instances of /node_modules

find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \;

Ref