On Dec 9, 1:23 pm, "ara.t.howard" <ara.t.how... / gmail.com> wrote: > On Dec 6, 2007, at 10:14 PM, MonkeeSage wrote: > > > Might I also suggest that you filter on the file's basename? One might > > except... > > > search -F "^\." -a . "blah" > > > ...to match all dot-files in ./ which contain "blah", but you actually > > need something like this since you're running the filter against the > > absolute path... > > > search -F ".*/*\." -a . "blah" > > that's kind of interesting - why not simply > > search . blah -F /. > > though? Cause I'm not smart, hehe. That works fine. > this should work unless you happen to have dot-directories too. if so > you can use > > search . blah -F '.[^/]+$' > > which would filter only dot-files though. i like the filter being > able to filter certain directories too. i could add an option to > alter it's behavior to only match basenames, or add a new option. > > thoughts? I don't think you need change anything since there will always be at least one "/" (and it's just as easy to affix the pattern with / as type an extra switch). My brain sometimes malfunctions. :) > a @http://codeforpeople.com/ > -- > it is not enough to be compassionate. you must act. > h.h. the 14th dalai lama Regards, Jordan