Skip to content

Instantly share code, notes, and snippets.

@ntamvl
Last active February 21, 2024 11:10
Show Gist options
  • Save ntamvl/f58873def474d54f9fc216be3a774a37 to your computer and use it in GitHub Desktop.
Save ntamvl/f58873def474d54f9fc216be3a774a37 to your computer and use it in GitHub Desktop.
Remove all node_module folders recursively

Remove all node_module folders recursively

With any type of folder/file

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

Only folder

find . -type d -name "node_modules" -exec rm -rf '{}' +
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment