Re: Parsing Dr. Watson log files
From: Top Rock (top-rock_at_lycos.co.uk)
Date: 02/24/04
- Previous message: Michael Giorgio - MVP: "Re: The server is not configured for transactions"
- In reply to: Bobby Crown: "Parsing Dr. Watson log files"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Date: Tue, 24 Feb 2004 19:37:32 -0000
Try using something like :-
for /f "tokens=1,2,3,4" %i in (myfile.log) do echo %i %j %k %l>>
parsedfile.txt
the tokens tells the command to use the 1st, 2nd, 3rd and 4th colum the %i
means the first collum variable is %i the myfile.txt is the name of the log
and then we can echo which colums out that we want. In this case I have said
colums 1,2,3,4 by echoing %i, %j %k %l
"Bobby Crown" <for2net1@yahoo.com> wrote in message
news:33059c90.0402090909.1146c133@posting.google.com...
> Can anyone tell me the easiest way to parse a Dr. Watson log file?
>
> Thanks in advance!!
- Previous message: Michael Giorgio - MVP: "Re: The server is not configured for transactions"
- In reply to: Bobby Crown: "Parsing Dr. Watson log files"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ] [ attachment ]
Relevant Pages
|