how to search multiple textfiles ?

Sean DiZazzo half.italian at gmail.com
Fri Sep 26 14:35:11 EDT 2008


On Sep 26, 6:35 am, Stef Mientki <s.mien... at ru.nl> wrote:
> hello,
>
> I want to search multiple textfiles (python source files) for a specific
> word.
> I can find all files, open them and do a search,
> but I guess that will be rather slow.
>
> I couldn't find any relevant information through google.
>
> Does anyone know of a search library that performs this task fast ?
>
> If it indeed only concerns py-files,
> is there another way of searching words ?
> ( I could imagine that such a "py-only-search" would have benefits,
> because you could set a flag to see the words in comment yes or no )
>
> thanks,
> Stef Mientki
>
> Het UMC St Radboud staat geregistreerd bij de Kamer van Koophandel in het handelsregister onder nummer 41055629.
> The Radboud University Nijmegen Medical Centre is listed in the Commercial Register of the Chamber of Commerce under file number 41055629.

I use 'fgrep' ie... `fgrep -r "toFind" /source`

~Sean



More information about the Python-list mailing list