Delete node_modules folder recursively from a specified path on MAC

ยท

1 min read

find . -name "node_modules" -exec rm -rf '{}' +

ย