Re: Assistance sought grepping log files

2009-10-02 Thread Larry W. Virden
--- On Thu, 10/1/09, Ken Jackson wrote: > Try: > >   strings -el logfile | grep ... Thanks - that works for me (as long as I remember that -el flag... -- Tcl - It's the real thing. http://wiki.tcl.tk/ http://www.purl.org/NET/lvirden/ http://www.xanga.com/lvirden/ Anything in this posting

Re: Assistance sought grepping log files

2009-10-01 Thread Ken Jackson
Try: strings -el logfile | grep ... -Ken On Thu, 1 Oct 2009 10:00:41 -0700 (PDT) "Larry W. Virden" wrote: > I regularly am forced to deal with a variety of logfiles on > Windows, and so in hopes of being able to do so with some grace, I > took a crack at accessing the files via Cygwin. > >

Re: Assistance sought grepping log files

2009-10-01 Thread Ralph Hempel
Larry W. Virden wrote: I regularly am forced to deal with a variety of logfiles on Windows, and so in hopes of being able to do so with some grace, I took a crack at accessing the files via Cygwin. Larry, there's a Tcl package for Cygwin :-) Ralph -- Problem reports: http://cygwin.com/p

Re: Assistance sought grepping log files

2009-10-01 Thread mike marchywka
On Thu, Oct 1, 2009 at 1:39 PM, Dave Korn wrote: > Larry W. Virden wrote: > >> For example, I've copied some of the "12 hive" tracing logs from IIS (or >> maybe it is SharePoint... I'm still struggling to figure all this out) into >> a directory to which I have access. >> >> Now I'd like to crunch

Re: Assistance sought grepping log files

2009-10-01 Thread Dave Korn
Larry W. Virden wrote: > For example, I've copied some of the "12 hive" tracing logs from IIS (or > maybe it is SharePoint... I'm still struggling to figure all this out) into > a directory to which I have access. > > Now I'd like to crunch those logs to see the errors, etc. > > awk and grep, ho