grep help

cape canaveral somniosus at gmail.com
Wed Jan 5 20:45:26 PST 2005


On Wed, 5 Jan 2005 22:31:54 -0600, Tillman Hodgson
<tillman at seekingfire.com> wrote:
> On Wed, Jan 05, 2005 at 08:27:51PM -0800, Jay O'Brien wrote:
> > I want to look at all of the lines in a FreeBSD log file that do not
> > have an entry from an IP, example 1.2.3.4.  Some basic help with the
> > use of grep would be appreciated. This is one of the arguments I've
> > tried that didn't work:
> >
> > grep ^[^1.2.3.4]*$ logfile.log
> 
> I like `grep -v` for "not" operations. Also note that "." is itself a
> special character.
> 
>   grep -v 1\.2\.3\.4 logfile.log
> 
> might be closer to what you want.
> 
> -T
> 
> --
> "'Way back, I set myself to be a happy man, and made it."
>     -- Louis Armstrong
> _______________________________________________
> freebsd-questions at freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe at freebsd.org"
> 

grep "1.2.3.4" logifle.log works for me (unless you were trying to
pull all IPs in the form of a.b.c.d ?)

-Aaron


More information about the freebsd-questions mailing list