Re: trying to optimize find's searches ...

2016-03-06 Thread Javier Barroso
Hello Albretch, On Sat, Mar 5, 2016 at 6:23 AM, Albretch Mueller wrote: > find works significantly faster when you bag various search patterns á la: > > -iname '*.ko' -or -iname '*.bin' -or -iname '*.txt' > > but, how could you do that using a batch strategy and setting a > variable with many "-[

Re: trying to optimize find's searches ...

2016-03-05 Thread David Wright
On Sat 05 Mar 2016 at 05:23:55 (+), Albretch Mueller wrote: > find works significantly faster when you bag various search patterns á la: > > -iname '*.ko' -or -iname '*.bin' -or -iname '*.txt' > > but, how could you do that using a batch strategy and setting a > variable with many "-[i]name .

Re: trying to optimize find's searches ...

2016-03-04 Thread tomas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sat, Mar 05, 2016 at 05:23:55AM +, Albretch Mueller wrote: > find works significantly faster when you bag various search patterns á la: > > -iname '*.ko' -or -iname '*.bin' -or -iname '*.txt' > > but, how could you do that using a batch strate

trying to optimize find's searches ...

2016-03-04 Thread Albretch Mueller
find works significantly faster when you bag various search patterns á la: -iname '*.ko' -or -iname '*.bin' -or -iname '*.txt' but, how could you do that using a batch strategy and setting a variable with many "-[i]name ... -or -[i]name ..." cases? line-by-line strategies are too slow lbrtchx