I'm trying to remove the crappy remnants of windows on my linux box. one thing I want to get rid of is the Thumbs.db and desktop.ini files that were in my music folder and got copied over. I was trying to do it by piping find to xargs but that isn't working. It should and I'm trying to figure out why it isn't. I know I could just use the -exec option  but now I just want to know why what I'm trying to do isn't working.
<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # find / -name &quot;Thumbs.db&quot; | xargs rm<br><br>according to this <a href="http://www.unixreview.com/documents/s=8274/sam0306g/">http://www.unixreview.com/documents/s=8274/sam0306g/</a> that should work...
<br>I've tried variations<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; #find / -type f -name &quot;Thumbs.db&quot; -print | xargs rm<br><br>and all sorts of other things. I usually get this <br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xargs: unmatched single quote<br><br>I looked the error up and what I found was of no help. at least to me... I didn't get it. Can someone tell me what I am doing wrong and how to do it properly?
<br><br><br>