[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [MiNT] Searchable mailing list archive on Gmane?



On Fri, Aug 26, 2011 at 9:14 AM, m0n0 <ole@monochrom.net> wrote:
>
>
> Additionally a good searching solution for the old archive would be good.
>
> I once downloaded all the files from the archive and use this script to find
> stuff:
>
>
> find ./ -type f -print | xargs egrep -iHZ "$1"  && echo " "
>
> then just call the script where that code is like this:
>
> search_mint_ml mykeyword
>
> Greets,
> m
>
I have a similar script..

find ./ -name "$PAT_MATCH" -exec grep -n "$FIND_MATCH" /dev/null {} \; -print

where $PAT_MATCH allows filename pattern (so I can also use it for source only)

Paul