/ Published in: Bash
Remove all those annoying thumbnail files that Windows users created while browsing your network drive. This command traverses all directories and deletes all "Thumbs.db" files as it finds them.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
find / -name "Thumbs.db" -exec rm '{}' \;