Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
            ];
    456
    Use of uninitialized value in print at test.pl line 13.
    
  2. or download this
    my $lag_detail;
    foreach my $line ( split( /\n/, $c ) ) {
    ...
                operationstate => $3, adminstate => $2 };
        }
    }
    
  3. or download this
    foreach my $line ( split( /\n/, $c ) ) {
        my %lag_detail;
        ...