By registering with us, you'll be able to discuss, share and private message with other members of our community.
SignUp Now!Is there a way to do multi-searches using ffind?
Something like:
ffind /t"os=vista64" && "servicepack=1" *.txt
Thanks,
Jim
Is there a way to do multi-searches using ffind?
Something like:
ffind /t"os=vista64" && "servicepack=1" *.txt
It will be useful such feature. I recall bfind:
http://www.softpedia.com/get/Programming/Other-Programming-Files/BFIND.shtml
Regards.
Only if they're on the same line (insert a * between the strings), or if you can do it with a regular expression (/E"...").
>
> Is there a way to do multi-searches using ffind?
>
> Something like:
>
> ffind /t"os=vista64" && "servicepack=1" *.txt
>
> Thanks,
> Jim
>
>
Try
ffind /v /e"os=vista64|servicepack=1" *.txt
-Scott
jimklein <> wrote on 05/20/2011 02:36:14 PM:
> ---Quote (Originally by rconn)---
> Only if they're on the same line (insert a * between the strings), or if you can do it with a regular expression (/E"...").
> ---End Quote---
>
> Yea - I'd really like it to do finds across multiple lines.
>
> Feature request? (& thanks)
>
> Jim Klein
>
>
>
>
> ---Quote (Originally by rconn)---
> Only if they're on the same line (insert a * between the strings), or if you can do it with a regular expression (/E"...").
> ---End Quote---
>
> Yea - I'd really like it to do finds across multiple lines.
>
> Feature request? (& thanks)
>
> Jim Klein
>
>
>
>