Help for this page

Select Code to Download


  1. or download this
    { print $2"|"$3"|"$7 }
    
  2. or download this
    awk '{print $2"|"$3"|"$7}' web.log | perl parselog.pl
    
  3. or download this
    while (<>) {
     chomp;
     my ($time, $date, $expo) = split /\|/;
     print "$time, $date, $expo\n";
    }