Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save moskalyk/b4d8923e733e23a548f558695a7f67bd to your computer and use it in GitHub Desktop.
Save moskalyk/b4d8923e733e23a548f558695a7f67bd to your computer and use it in GitHub Desktop.
#!/bin/bash
# Function to remove node_modules folders
removeNodeModules() {
find "$1" -type d -name "node_modules" -exec rm -rf {} +
}
# Call the function with the current directory as the starting point
removeNodeModules .
echo "Removal of node_modules folders completed."
## How to: migrating_computer_post_account_discord_hack
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment