<p dir="ltr">You could do this a couple of ways:</p>
<p dir="ltr">rm -v `ls -R | grep &quot;\ 2\.mp3&quot;`</p>
<p dir="ltr">ls -R | grep &quot;\ 2\.mp3&quot; | xargs rm -v</p>
<p dir="ltr">You could also look into using find instead of the ls and grep combination and use the -exec argument to call rm -v</p>
<p dir="ltr">Lots of ways to skin that cat.</p>
<p dir="ltr">Matt</p>
<div class="gmail_quote">On May 7, 2016 22:32, &quot;Johnathon Scott&quot; &lt;<a href="mailto:js573712@ohio.edu">js573712@ohio.edu</a>&gt; wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
<br>
I am having difficulty understanding how to pass values to rm.  I want<br>
to delete files that match a specific criterion.  I recently acquired an<br>
os x machine and iTunes has doubled a significant portion of my<br>
library.  But fortunately, the duplicates are easy to identify, they all<br>
look like &quot;foo 2.(mp3|m4a)&quot;.<br>
<br>
What I have right now is &quot;ls -R | grep &quot;\ 2\.mp3&quot; | rm -v&quot;.<br>
<br>
Thank you for your time,<br>
<br>
Johnathon Scott<br>
<br>
--<br>
<br>
Personal Site: <a href="https://www.pergraphicum.net" rel="noreferrer" target="_blank">https://www.pergraphicum.net</a><br>
<br>
<br>
<br>_______________________________________________<br>
colug-432 mailing list<br>
<a href="mailto:colug-432@colug.net">colug-432@colug.net</a><br>
<a href="http://lists.colug.net/mailman/listinfo/colug-432" rel="noreferrer" target="_blank">http://lists.colug.net/mailman/listinfo/colug-432</a><br>
<br></blockquote></div>