You are not logged in.
Offline
on your ~:
$ find -name thumbs.db
check whether there's something that shouldn't be deleted on this list, and then
$ rm `find -name thumbs.db`
I guess it should work. (only if there are no spaces in the filenames, though)
Last edited by andre.ramaciotti (2008-09-29 19:21:30)
(lambda ())
Offline
even easier:
find ~ -iregex '.*/thumbs.db\|.*/desktop.ini' -delete
Last edited by ezzetabi (2008-09-29 20:31:29)
Offline
Just as a note, it's Thumbs.db, and desktop.ini. Case matters ;P
I have a find -delete in cron for those files, since I get file transfers from a windows friend fairly often.
[git] | [AURpkgs] | [arch-games]
Offline
it is -iregex (not -regex) case does not matter.
Offline
It's lowercase, Windows makes no distinction between cases.
The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...
Offline