On 06/18/02, 11:06:53AM -0500, Schmeits, Roger wrote:
> If I run the command:
> 
> find /home -name "rules.ima" 
> 
> it lists all rules.ima directories. perfect!
> 
> but if I run:
> 
> find /home -name "rules.ima" | grep "@aol.com"
>  it comes up with nothing.
> 
> So I drill down to a directory that has both a rules.ima file and a entry
> within that file with the entry "[EMAIL PROTECTED]".
> 
> I run the command grep -e aol.com -f rules.ima
> 
> It just sits there and spins.
> 
> Any ideas?

find /home -name "rules.ima" | xargs grep "@aol.com"

John



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to