Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
            $severity = "Warning";
        }
    }
    
  2. or download this
    my @severity_map = (
        ["Error","Warning"],         ["Warning","Minor"],
    ...
            next unless $description =~ /$_->[0]/i;
            $severity = $_->[1];
        }