spences10
3/17/2017 - 12:03 PM

Delete all node_modules folders RECURSIVELY

Delete all node_modules folders RECURSIVELY

#!/bin/bash

# this will find all node_modules above your path and will remove them

find . | grep /node_modules$ | grep -v /node_modules/ | xargs rm -fR