4 lines
137 B
Bash
4 lines
137 B
Bash
#!/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 {} \; |