<div dir="ltr"><div><div>I am searching through pretty well randomized directories for files using strings that I have massaged into the form *blah*crud*junk* using a spreadsheet.  So the command:<br><br></div>find /home/rbclemen/src -iname *blah*crud*junk* -print0 | xargs -t -0 -I {} mv -v {} .<br>
<br></div>does what I want it to.  It would be more useful, however, if the order of the words in the search string was not relevant.  it currently only finds instances where those words appear in that order, or as part of words that appear in that order.  Anyone able to suggest a way to make the matching of the multiple terms not order dependent?  Producing additional strings with the terms in a different order would be non trivial.<br>
<br>Brent<br></div>