Help for this page

Select Code to Download


  1. or download this
    local $/ = \(2*122);
    binmode($fixedfile);
    ...
       my $timestamp = $fields[4];
       ...
    }
    
  2. or download this
       my %fields;
       @fields{qw(
    ...
          timestamp
          ...
       )} = unpack(...);
    
  3. or download this
       my (
          ...
    ...
          $timestamp,
          ...
       ) = unpack(...);