feat: add Dotbot

This commit is contained in:
Stefan Imhoff
2024-08-09 11:57:28 +02:00
parent a41290c297
commit 0437240919
248 changed files with 1205 additions and 44 deletions

View File

@@ -0,0 +1,18 @@
# Delete all node_modules folders in a folder and subfolders
delete_node_modules() {
echo "This will delete all node_modules directories in the current directory and its subdirectories."
echo "Are you sure you want to continue? (y/N)"
read -r response
case "$response" in
[yY][eE][sS]|[yY])
echo "Searching for node_modules directories..."
find . -name "node_modules" -type d -print -exec rm -rf {} +
echo "Deletion complete."
;;
*)
echo "Operation cancelled."
;;
esac
}