Greetings.

Please advice
I am looking for a log analyzer scripts for IIS over win2k if possible
Freeware.

with regards

Rajeev Rumale
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Rajeev Rumale
MyAngel.Net Pte Ltd.,                                            Phone  :
(65)8831530 (office)
#04-01, 180 B, The Bencoolen,                               Email  :
[EMAIL PROTECTED]
Bencoolen Street, Singapore - 189648                     ICQ    : 121001541
Website : www.myangel.net
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~



----- Original Message -----
From: <[EMAIL PROTECTED]>
To: "Perl Discuss" <[EMAIL PROTECTED]>
Sent: Monday, July 02, 2001 9:46 AM
Subject: splitting on \t


> open FH, $virt or die "Cant open virtuser file $!\n";
>
> while (<FH>) {
>   $each = $_;
>   chomp $each;
>   @entry = split /\/t/, $each;
>   print "$entry[0]\n";
>   if ( $entry[0] eq $name ) {
>     $dest = $entry[1];
>   }
> }
> close FH;
>
> i am not certain why, but when i run this script, it doesnt seem to be
> splitting a line on the \t character, rather it just feeds me the entire
> line back as $entry[0].
> when i open my file in vim, i confirm that each line is indeed tab
> delimited. do i have an error in my syntax?
>
> thanks -charles
>
>

Reply via email to