Skip to content

Instantly share code, notes, and snippets.

@jonasfroeller
Created June 28, 2023 16:21
Show Gist options
  • Save jonasfroeller/9207b4214e251964991e9b057e38b1a9 to your computer and use it in GitHub Desktop.
Save jonasfroeller/9207b4214e251964991e9b057e38b1a9 to your computer and use it in GitHub Desktop.
delete all node_modules folders on your system (Linux)
#!/bin/bash
find . -name "node_modules"
-type d -prune -exec rm -rf '{}' ;
read -p "Press Enter to exit..."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment