You could of also done the following.<br>
<br>
# find /&nbsp; -type f -name Thumbs.db -exec rm {} \; <br>
<br>
<br>
Dustin<br><br><div><span class="gmail_quote">On 4/3/06, <b class="gmail_sendername">Caleb Cushing</b> &lt;<a href="mailto:xenoterracide@gmail.com">xenoterracide@gmail.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div style="direction: ltr;">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&nbsp; 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/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
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>

</div><br>_______________________________________________<br>linux-user mailing list<br><a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:linux-user@egr.msu.edu">linux-user@egr.msu.edu</a><br><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://mailman.egr.msu.edu/mailman/listinfo/linux-user" target="_blank">
http://mailman.egr.msu.edu/mailman/listinfo/linux-user</a><br><br><br></blockquote></div><br>