Add delete-node-modules.sh

This commit is contained in:
2026-08-03 08:30:41 +02:00
parent 07ee642e91
commit e998b287f7

4
delete-node-modules.sh Normal file
View File

@@ -0,0 +1,4 @@
#!/bin/sh
# Letar upp och tar bort alla node_modules-mappar
# Crille 2022-03-16
find /home/ -name node_modules -type d -exec rm -rf {} \;