Created
June 19, 2023 16:08
-
-
Save moskalyk/b4d8923e733e23a548f558695a7f67bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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